2023-01-04 12:24:36 -05:00
// Copyright 2023 The Hugo Authors. All rights reserved.
2013-09-29 02:09:03 -04:00
//
2015-11-23 22:16:36 -05:00
// Licensed under the Apache License, Version 2.0 (the "License");
2013-09-29 02:09:03 -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-09-29 02:09:03 -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 commands
import (
2018-10-03 08:58:09 -04:00
"bytes"
2022-03-14 11:34:23 -04:00
"context"
2023-01-04 12:24:36 -05:00
"encoding/json"
"errors"
2013-09-29 02:09:03 -04:00
"fmt"
2019-12-10 13:56:44 -05:00
"io"
2023-01-04 12:24:36 -05:00
"io/ioutil"
2014-05-15 15:07:46 -04:00
"net"
2013-09-29 02:09:03 -04:00
"net/http"
2014-08-22 07:59:59 -04:00
"net/url"
2014-01-26 04:48:00 -05:00
"os"
2023-01-04 12:24:36 -05:00
"sync"
"sync/atomic"
2018-01-14 14:58:52 -05:00
"os/signal"
2022-03-21 04:35:15 -04:00
"path"
2017-11-02 03:25:20 -04:00
"path/filepath"
2018-10-03 08:58:09 -04:00
"regexp"
2013-09-29 02:09:03 -04:00
"strconv"
2013-11-22 00:28:05 -05:00
"strings"
2018-01-14 14:58:52 -05:00
"syscall"
2014-09-22 09:45:05 -04:00
"time"
2014-03-31 13:23:34 -04:00
2023-01-04 12:24:36 -05:00
"github.com/bep/debounce"
"github.com/bep/simplecobra"
"github.com/fsnotify/fsnotify"
"github.com/gohugoio/hugo/common/herrors"
"github.com/gohugoio/hugo/common/hugo"
"github.com/gohugoio/hugo/common/types"
"github.com/gohugoio/hugo/common/urls"
2023-05-19 06:54:42 -04:00
"github.com/gohugoio/hugo/config"
2023-01-04 12:24:36 -05:00
"github.com/gohugoio/hugo/helpers"
"github.com/gohugoio/hugo/hugofs"
"github.com/gohugoio/hugo/hugofs/files"
2022-05-16 03:22:51 -04:00
"github.com/gohugoio/hugo/hugolib"
2023-01-04 12:24:36 -05:00
"github.com/gohugoio/hugo/hugolib/filesystems"
2017-11-12 04:03:56 -05:00
"github.com/gohugoio/hugo/livereload"
2023-01-04 12:24:36 -05:00
"github.com/gohugoio/hugo/tpl"
"github.com/gohugoio/hugo/transform"
"github.com/gohugoio/hugo/transform/livereloadinject"
2017-06-13 13:07:35 -04:00
"github.com/spf13/afero"
2023-01-04 12:24:36 -05:00
"github.com/spf13/fsync"
"golang.org/x/sync/errgroup"
"golang.org/x/sync/semaphore"
2013-09-29 02:09:03 -04:00
)
2023-01-04 12:24:36 -05:00
var (
logErrorRe = regexp . MustCompile ( ` (?s)ERROR \d { 4}/\d { 2}/\d { 2} \d { 2}:\d { 2}:\d { 2} ` )
logDuplicateTemplateExecuteRe = regexp . MustCompile ( ` : template: .*?:\d+:\d+: executing ".*?" ` )
logDuplicateTemplateParseRe = regexp . MustCompile ( ` : template: .*?:\d+:\d* ` )
)
2018-04-09 16:28:03 -04:00
2023-01-04 12:24:36 -05:00
var logReplacer = strings . NewReplacer (
"can't" , "can’ t" , // Chroma lexer doesn't do well with "can't"
"*hugolib.pageState" , "page.Page" , // Page is the public interface.
"Rebuild failed:" , "" ,
)
2015-11-12 10:23:41 -05:00
2023-01-04 12:24:36 -05:00
const (
configChangeConfig = "config file"
configChangeGoMod = "go.mod file"
configChangeGoWork = "go work file"
)
2015-11-16 21:55:18 -05:00
2023-01-04 12:24:36 -05:00
func newHugoBuilder ( r * rootCommand , s * serverCommand , onConfigLoaded ... func ( reloaded bool ) error ) * hugoBuilder {
return & hugoBuilder {
r : r ,
s : s ,
visitedURLs : types . NewEvictingStringQueue ( 100 ) ,
fullRebuildSem : semaphore . NewWeighted ( 1 ) ,
debounce : debounce . New ( 4 * time . Second ) ,
onConfigLoaded : func ( reloaded bool ) error {
for _ , wc := range onConfigLoaded {
if err := wc ( reloaded ) ; err != nil {
return err
}
2022-03-18 03:54:44 -04:00
}
2023-01-04 12:24:36 -05:00
return nil
2022-03-18 03:54:44 -04:00
} ,
2023-01-04 12:24:36 -05:00
}
2014-05-16 17:49:27 -04:00
}
2023-01-04 12:24:36 -05:00
func newServerCommand ( ) * serverCommand {
var c * serverCommand
c = & serverCommand {
2023-05-17 12:45:23 -04:00
quit : make ( chan bool ) ,
2023-01-04 12:24:36 -05:00
}
return c
2015-10-23 12:21:37 -04:00
}
2023-01-04 12:24:36 -05:00
type countingStatFs struct {
afero . Fs
statCounter uint64
2015-10-23 12:21:37 -04:00
}
2023-01-04 12:24:36 -05:00
func ( fs * countingStatFs ) Stat ( name string ) ( os . FileInfo , error ) {
f , err := fs . Fs . Stat ( name )
if err == nil {
if ! f . IsDir ( ) {
atomic . AddUint64 ( & fs . statCounter , 1 )
}
2015-10-23 12:21:37 -04:00
}
2023-01-04 12:24:36 -05:00
return f , err
2015-10-23 12:21:37 -04:00
}
2023-01-04 12:24:36 -05:00
// dynamicEvents contains events that is considered dynamic, as in "not static".
// Both of these categories will trigger a new build, but the asset events
// does not fit into the "navigate to changed" logic.
type dynamicEvents struct {
ContentEvents [ ] fsnotify . Event
AssetEvents [ ] fsnotify . Event
2015-10-23 12:21:37 -04:00
}
2023-01-04 12:24:36 -05:00
type fileChangeDetector struct {
sync . Mutex
current map [ string ] string
prev map [ string ] string
2018-03-18 06:07:24 -04:00
2023-01-04 12:24:36 -05:00
irrelevantRe * regexp . Regexp
}
2018-01-25 11:03:29 -05:00
2023-01-04 12:24:36 -05:00
func ( f * fileChangeDetector ) OnFileClose ( name , md5sum string ) {
f . Lock ( )
defer f . Unlock ( )
f . current [ name ] = md5sum
}
:sparkles: Implement Page bundling and image handling
This commit is not the smallest in Hugo's history.
Some hightlights include:
* Page bundles (for complete articles, keeping images and content together etc.).
* Bundled images can be processed in as many versions/sizes as you need with the three methods `Resize`, `Fill` and `Fit`.
* Processed images are cached inside `resources/_gen/images` (default) in your project.
* Symbolic links (both files and dirs) are now allowed anywhere inside /content
* A new table based build summary
* The "Total in nn ms" now reports the total including the handling of the files inside /static. So if it now reports more than you're used to, it is just **more real** and probably faster than before (see below).
A site building benchmark run compared to `v0.31.1` shows that this should be slightly faster and use less memory:
```bash
▶ ./benchSite.sh "TOML,num_langs=.*,num_root_sections=5,num_pages=(500|1000),tags_per_page=5,shortcodes,render"
benchmark old ns/op new ns/op delta
BenchmarkSiteBuilding/TOML,num_langs=1,num_root_sections=5,num_pages=500,tags_per_page=5,shortcodes,render-4 101785785 78067944 -23.30%
BenchmarkSiteBuilding/TOML,num_langs=1,num_root_sections=5,num_pages=1000,tags_per_page=5,shortcodes,render-4 185481057 149159919 -19.58%
BenchmarkSiteBuilding/TOML,num_langs=3,num_root_sections=5,num_pages=500,tags_per_page=5,shortcodes,render-4 103149918 85679409 -16.94%
BenchmarkSiteBuilding/TOML,num_langs=3,num_root_sections=5,num_pages=1000,tags_per_page=5,shortcodes,render-4 203515478 169208775 -16.86%
benchmark old allocs new allocs delta
BenchmarkSiteBuilding/TOML,num_langs=1,num_root_sections=5,num_pages=500,tags_per_page=5,shortcodes,render-4 532464 391539 -26.47%
BenchmarkSiteBuilding/TOML,num_langs=1,num_root_sections=5,num_pages=1000,tags_per_page=5,shortcodes,render-4 1056549 772702 -26.87%
BenchmarkSiteBuilding/TOML,num_langs=3,num_root_sections=5,num_pages=500,tags_per_page=5,shortcodes,render-4 555974 406630 -26.86%
BenchmarkSiteBuilding/TOML,num_langs=3,num_root_sections=5,num_pages=1000,tags_per_page=5,shortcodes,render-4 1086545 789922 -27.30%
benchmark old bytes new bytes delta
BenchmarkSiteBuilding/TOML,num_langs=1,num_root_sections=5,num_pages=500,tags_per_page=5,shortcodes,render-4 53243246 43598155 -18.12%
BenchmarkSiteBuilding/TOML,num_langs=1,num_root_sections=5,num_pages=1000,tags_per_page=5,shortcodes,render-4 105811617 86087116 -18.64%
BenchmarkSiteBuilding/TOML,num_langs=3,num_root_sections=5,num_pages=500,tags_per_page=5,shortcodes,render-4 54558852 44545097 -18.35%
BenchmarkSiteBuilding/TOML,num_langs=3,num_root_sections=5,num_pages=1000,tags_per_page=5,shortcodes,render-4 106903858 86978413 -18.64%
```
Fixes #3651
Closes #3158
Fixes #1014
Closes #2021
Fixes #1240
Updates #3757
2017-07-24 03:00:23 -04:00
2023-01-04 12:24:36 -05:00
func ( f * fileChangeDetector ) PrepareNew ( ) {
if f == nil {
2022-03-14 11:34:23 -04:00
return
2014-01-29 17:50:31 -05:00
}
2013-11-22 00:28:05 -05:00
2023-01-04 12:24:36 -05:00
f . Lock ( )
defer f . Unlock ( )
2021-07-05 04:38:54 -04:00
2023-01-04 12:24:36 -05:00
if f . current == nil {
f . current = make ( map [ string ] string )
f . prev = make ( map [ string ] string )
return
2015-11-16 21:55:18 -05:00
}
2023-01-04 12:24:36 -05:00
f . prev = make ( map [ string ] string )
for k , v := range f . current {
f . prev [ k ] = v
2015-12-02 05:42:53 -05:00
}
2023-01-04 12:24:36 -05:00
f . current = make ( map [ string ] string )
}
2013-10-09 18:24:40 -04:00
2023-01-04 12:24:36 -05:00
func ( f * fileChangeDetector ) changed ( ) [ ] string {
if f == nil {
return nil
}
f . Lock ( )
defer f . Unlock ( )
var c [ ] string
for k , v := range f . current {
vv , found := f . prev [ k ]
if ! found || v != vv {
c = append ( c , k )
2013-09-29 02:09:03 -04:00
}
}
2023-01-04 12:24:36 -05:00
return f . filterIrrelevant ( c )
2013-09-29 02:09:03 -04:00
}
2023-01-04 12:24:36 -05:00
func ( f * fileChangeDetector ) filterIrrelevant ( in [ ] string ) [ ] string {
var filtered [ ] string
for _ , v := range in {
if ! f . irrelevantRe . MatchString ( v ) {
filtered = append ( filtered , v )
}
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
}
2023-01-04 12:24:36 -05:00
return filtered
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
}
2017-11-02 03:25:20 -04:00
type fileServer struct {
2018-10-03 08:58:09 -04:00
baseURLs [ ] string
roots [ ] string
2022-03-17 17:03:27 -04:00
errorTemplate func ( err any ) ( io . Reader , error )
2023-01-04 12:24:36 -05:00
c * serverCommand
2020-05-27 07:50:13 -04:00
}
2022-03-18 03:54:44 -04:00
func ( f * fileServer ) createEndpoint ( i int ) ( * http . ServeMux , net . Listener , string , string , error ) {
2023-01-04 12:24:36 -05:00
r := f . c . r
2017-11-02 03:25:20 -04:00
baseURL := f . baseURLs [ i ]
root := f . roots [ i ]
2022-03-18 03:54:44 -04:00
port := f . c . serverPorts [ i ] . p
listener := f . c . serverPorts [ i ] . ln
2023-01-04 12:24:36 -05:00
logger := f . c . r . logger
2017-11-02 03:25:20 -04:00
2023-05-24 03:26:30 -04:00
r . Printf ( "Environment: %q\n" , f . c . hugoTry ( ) . Deps . Site . Hugo ( ) . Environment )
2018-11-15 03:28:02 -05:00
2017-11-12 04:03:56 -05:00
if i == 0 {
2023-01-04 12:24:36 -05:00
if f . c . renderToDisk {
r . Println ( "Serving pages from disk" )
} else if f . c . renderStaticToDisk {
r . Println ( "Serving pages from memory and static files from disk" )
2017-11-12 04:03:56 -05:00
} else {
2023-01-04 12:24:36 -05:00
r . Println ( "Serving pages from memory" )
2017-11-12 04:03:56 -05:00
}
2015-11-16 21:55:18 -05:00
}
2014-01-26 04:48:00 -05:00
2023-05-19 06:54:42 -04:00
var httpFs * afero . HttpFs
f . c . withConf ( func ( conf * commonConfig ) {
httpFs = afero . NewHttpFs ( conf . fs . PublishDirServer )
} )
2022-03-21 04:35:15 -04:00
fs := filesOnlyFs { httpFs . Dir ( path . Join ( "/" , root ) ) }
2018-10-03 08:58:09 -04:00
if i == 0 && f . c . fastRenderMode {
2023-01-04 12:24:36 -05:00
r . Println ( "Running in Fast Render Mode. For full rebuilds on change: hugo server --disableFastRender" )
Only re-render the view(s) you're working on
Hugo already, in its server mode, support partial rebuilds. To put it simply: If you change `about.md`, only that content page is read and processed, then Hugo does some processing (taxonomies etc.) and the full site is rendered.
This commit covers the rendering part: We now only re-render the pages you work on, i.e. the last n pages you watched in the browser (which obviously also includes the page in the example above).
To be more specific: When you are running the hugo server in watch (aka. livereload) mode, and change a template or a content file, then we do a partial re-rendering of the following:
* The current content page (if it is a content change)
* The home page
* Up to the last 10 pages you visited on the site.
This should in most cases be enough, but if you navigate to something completely different, you may see stale content. Doing an edit will then refresh that page.
Note that this feature is enabled by default. To turn it off, run `hugo server --disableFastRender`.
Fixes #3962
See #1643
2017-10-14 07:40:43 -04:00
}
2017-11-02 03:25:20 -04:00
// We're only interested in the path
u , err := url . Parse ( baseURL )
if err != nil {
2023-01-04 12:24:36 -05:00
return nil , nil , "" , "" , fmt . Errorf ( "invalid baseURL: %w" , err )
2017-11-02 03:25:20 -04:00
}
2017-09-22 11:13:21 -04:00
decorate := func ( h http . Handler ) http . Handler {
return http . HandlerFunc ( func ( w http . ResponseWriter , r * http . Request ) {
2018-10-03 08:58:09 -04:00
if f . c . showErrorInBrowser {
// First check the error state
err := f . c . getErrorWithContext ( )
if err != nil {
2023-05-18 04:36:48 -04:00
f . c . errState . setWasErr ( true )
2018-10-03 08:58:09 -04:00
w . WriteHeader ( 500 )
2019-12-10 13:56:44 -05:00
r , err := f . errorTemplate ( err )
2018-10-03 08:58:09 -04:00
if err != nil {
2023-01-04 12:24:36 -05:00
logger . Errorln ( err )
2018-10-03 08:58:09 -04:00
}
2020-03-10 13:12:11 -04:00
2018-10-22 13:50:27 -04:00
port = 1313
2023-05-19 06:54:42 -04:00
f . c . withConf ( func ( conf * commonConfig ) {
if lrport := conf . configs . GetFirstLanguageConfig ( ) . BaseURLLiveReload ( ) . Port ( ) ; lrport != 0 {
port = lrport
}
} )
2020-12-02 06:52:26 -05:00
lr := * u
lr . Host = fmt . Sprintf ( "%s:%d" , lr . Hostname ( ) , port )
fmt . Fprint ( w , injectLiveReloadScript ( r , lr ) )
2018-10-03 08:58:09 -04:00
return
}
}
2023-01-04 12:24:36 -05:00
if f . c . noHTTPCache {
2017-09-22 14:05:19 -04:00
w . Header ( ) . Set ( "Cache-Control" , "no-store, no-cache, must-revalidate, max-age=0" )
2017-09-22 11:13:21 -04:00
w . Header ( ) . Set ( "Pragma" , "no-cache" )
}
Only re-render the view(s) you're working on
Hugo already, in its server mode, support partial rebuilds. To put it simply: If you change `about.md`, only that content page is read and processed, then Hugo does some processing (taxonomies etc.) and the full site is rendered.
This commit covers the rendering part: We now only re-render the pages you work on, i.e. the last n pages you watched in the browser (which obviously also includes the page in the example above).
To be more specific: When you are running the hugo server in watch (aka. livereload) mode, and change a template or a content file, then we do a partial re-rendering of the following:
* The current content page (if it is a content change)
* The home page
* Up to the last 10 pages you visited on the site.
This should in most cases be enough, but if you navigate to something completely different, you may see stale content. Doing an edit will then refresh that page.
Note that this feature is enabled by default. To turn it off, run `hugo server --disableFastRender`.
Fixes #3962
See #1643
2017-10-14 07:40:43 -04:00
2023-05-19 06:54:42 -04:00
var serverConfig config . Server
f . c . withConf ( func ( conf * commonConfig ) {
serverConfig = conf . configs . Base . Server
} )
2023-01-04 12:24:36 -05:00
2020-06-05 06:13:26 -04:00
// Ignore any query params for the operations below.
2022-09-17 05:25:37 -04:00
requestURI , _ := url . PathUnescape ( strings . TrimSuffix ( r . RequestURI , "?" + r . URL . RawQuery ) )
2020-06-05 06:13:26 -04:00
2023-01-04 12:24:36 -05:00
for _ , header := range serverConfig . MatchHeaders ( requestURI ) {
2020-03-08 11:33:15 -04:00
w . Header ( ) . Set ( header . Key , header . Value )
}
2023-01-04 12:24:36 -05:00
if redirect := serverConfig . MatchRedirect ( requestURI ) ; ! redirect . IsZero ( ) {
2022-09-17 05:25:37 -04:00
// fullName := filepath.Join(dir, filepath.FromSlash(path.Clean("/"+name)))
2020-10-05 11:56:28 -04:00
doRedirect := true
2020-05-27 07:50:13 -04:00
// This matches Netlify's behaviour and is needed for SPA behaviour.
// See https://docs.netlify.com/routing/redirects/rewrites-proxies/
2020-10-05 11:56:28 -04:00
if ! redirect . Force {
path := filepath . Clean ( strings . TrimPrefix ( requestURI , u . Path ) )
2022-09-13 05:33:42 -04:00
if root != "" {
path = filepath . Join ( root , path )
}
2023-05-19 06:54:42 -04:00
var fs afero . Fs
f . c . withConf ( func ( conf * commonConfig ) {
2023-05-27 09:22:45 -04:00
fs = conf . fs . PublishDirServer
2023-05-19 06:54:42 -04:00
} )
2022-09-13 05:33:42 -04:00
fi , err := fs . Stat ( path )
2020-10-05 11:56:28 -04:00
if err == nil {
if fi . IsDir ( ) {
// There will be overlapping directories, so we
// need to check for a file.
2022-09-13 05:33:42 -04:00
_ , err = fs . Stat ( filepath . Join ( path , "index.html" ) )
2020-10-05 11:56:28 -04:00
doRedirect = err != nil
} else {
doRedirect = false
}
}
}
if doRedirect {
2022-09-13 05:33:42 -04:00
switch redirect . Status {
case 404 :
w . WriteHeader ( 404 )
2022-09-23 03:16:59 -04:00
file , err := fs . Open ( strings . TrimPrefix ( redirect . To , u . Path ) )
2022-09-13 05:33:42 -04:00
if err == nil {
defer file . Close ( )
io . Copy ( w , file )
} else {
fmt . Fprintln ( w , "<h1>Page Not Found</h1>" )
}
return
case 200 :
2020-10-05 11:56:28 -04:00
if r2 := f . rewriteRequest ( r , strings . TrimPrefix ( redirect . To , u . Path ) ) ; r2 != nil {
requestURI = redirect . To
r = r2
}
2022-09-13 05:33:42 -04:00
default :
2020-10-05 11:56:28 -04:00
w . Header ( ) . Set ( "Content-Type" , "" )
http . Redirect ( w , r , redirect . To , redirect . Status )
return
2022-09-13 05:33:42 -04:00
2020-05-27 07:50:13 -04:00
}
}
}
2023-01-04 12:24:36 -05:00
if f . c . fastRenderMode && f . c . errState . buildErr ( ) == nil {
2020-06-05 06:13:26 -04:00
if strings . HasSuffix ( requestURI , "/" ) || strings . HasSuffix ( requestURI , "html" ) || strings . HasSuffix ( requestURI , "htm" ) {
if ! f . c . visitedURLs . Contains ( requestURI ) {
2018-10-17 03:28:04 -04:00
// If not already on stack, re-render that single page.
2020-06-05 06:13:26 -04:00
if err := f . c . partialReRender ( requestURI ) ; err != nil {
f . c . handleBuildErr ( err , fmt . Sprintf ( "Failed to render %q" , requestURI ) )
2018-10-17 03:28:04 -04:00
if f . c . showErrorInBrowser {
2020-06-05 06:13:26 -04:00
http . Redirect ( w , r , requestURI , http . StatusMovedPermanently )
2018-10-17 03:28:04 -04:00
return
}
}
}
2020-06-05 06:13:26 -04:00
f . c . visitedURLs . Add ( requestURI )
2018-10-17 03:28:04 -04:00
Only re-render the view(s) you're working on
Hugo already, in its server mode, support partial rebuilds. To put it simply: If you change `about.md`, only that content page is read and processed, then Hugo does some processing (taxonomies etc.) and the full site is rendered.
This commit covers the rendering part: We now only re-render the pages you work on, i.e. the last n pages you watched in the browser (which obviously also includes the page in the example above).
To be more specific: When you are running the hugo server in watch (aka. livereload) mode, and change a template or a content file, then we do a partial re-rendering of the following:
* The current content page (if it is a content change)
* The home page
* Up to the last 10 pages you visited on the site.
This should in most cases be enough, but if you navigate to something completely different, you may see stale content. Doing an edit will then refresh that page.
Note that this feature is enabled by default. To turn it off, run `hugo server --disableFastRender`.
Fixes #3962
See #1643
2017-10-14 07:40:43 -04:00
}
}
2020-05-27 07:50:13 -04:00
2017-09-22 11:13:21 -04:00
h . ServeHTTP ( w , r )
} )
}
fileserver := decorate ( http . FileServer ( fs ) )
2017-11-02 03:25:20 -04:00
mu := http . NewServeMux ( )
2014-08-22 07:59:59 -04:00
if u . Path == "" || u . Path == "/" {
2017-11-02 03:25:20 -04:00
mu . Handle ( "/" , fileserver )
2014-08-22 07:59:59 -04:00
} else {
2017-11-02 03:25:20 -04:00
mu . Handle ( u . Path , http . StripPrefix ( u . Path , fileserver ) )
2014-08-22 07:59:59 -04:00
}
2023-01-04 12:24:36 -05:00
if r . IsTestRun ( ) {
var shutDownOnce sync . Once
mu . HandleFunc ( "/__stop" , func ( w http . ResponseWriter , r * http . Request ) {
shutDownOnce . Do ( func ( ) {
close ( f . c . quit )
} )
} )
}
2014-08-22 07:59:59 -04:00
2023-01-04 12:24:36 -05:00
endpoint := net . JoinHostPort ( f . c . serverInterface , strconv . Itoa ( port ) )
2017-11-02 03:25:20 -04:00
2022-03-18 03:54:44 -04:00
return mu , listener , u . String ( ) , endpoint , nil
2017-11-02 03:25:20 -04:00
}
2023-01-04 12:24:36 -05:00
func ( f * fileServer ) rewriteRequest ( r * http . Request , toPath string ) * http . Request {
r2 := new ( http . Request )
* r2 = * r
r2 . URL = new ( url . URL )
* r2 . URL = * r . URL
r2 . URL . Path = toPath
r2 . Header . Set ( "X-Rewrite-Original-URI" , r . URL . RequestURI ( ) )
2018-10-03 08:58:09 -04:00
2023-01-04 12:24:36 -05:00
return r2
2018-10-03 08:58:09 -04:00
}
2022-05-12 05:43:20 -04:00
2023-01-04 12:24:36 -05:00
type filesOnlyFs struct {
fs http . FileSystem
}
2022-05-12 05:43:20 -04:00
2023-01-04 12:24:36 -05:00
func ( fs filesOnlyFs ) Open ( name string ) ( http . File , error ) {
f , err := fs . fs . Open ( name )
if err != nil {
return nil , err
}
return noDirFile { f } , nil
}
type noDirFile struct {
http . File
}
func ( f noDirFile ) Readdir ( count int ) ( [ ] os . FileInfo , error ) {
return nil , nil
}
type serverCommand struct {
r * rootCommand
commands [ ] simplecobra . Commander
* hugoBuilder
quit chan bool // Closed when the server should shut down. Used in tests only.
serverPorts [ ] serverPortListener
doLiveReload bool
// Flags.
renderToDisk bool
renderStaticToDisk bool
navigateToChanged bool
serverAppend bool
serverInterface string
serverPort int
liveReloadPort int
serverWatch bool
noHTTPCache bool
disableLiveReload bool
disableFastRender bool
disableBrowserError bool
}
func ( c * serverCommand ) Commands ( ) [ ] simplecobra . Commander {
return c . commands
}
func ( c * serverCommand ) Name ( ) string {
return "server"
}
func ( c * serverCommand ) Run ( ctx context . Context , cd * simplecobra . Commandeer , args [ ] string ) error {
err := func ( ) error {
defer c . r . timeTrack ( time . Now ( ) , "Built" )
err := c . build ( )
return err
} ( )
if err != nil {
return err
2022-05-02 10:07:52 -04:00
}
2023-01-04 12:24:36 -05:00
// Watch runs its own server as part of the routine
if c . serverWatch {
watchDirs , err := c . getDirList ( )
if err != nil {
return err
}
watchGroups := helpers . ExtractAndGroupRootPaths ( watchDirs )
for _ , group := range watchGroups {
c . r . Printf ( "Watching for changes in %s\n" , group )
}
watcher , err := c . newWatcher ( c . r . poll , watchDirs ... )
if err != nil {
return err
}
defer watcher . Close ( )
}
return c . serve ( )
}
2023-05-17 12:45:23 -04:00
func ( c * serverCommand ) Init ( cd * simplecobra . Commandeer ) error {
cmd := cd . CobraCommand
2023-01-04 12:24:36 -05:00
cmd . Short = "A high performance webserver"
cmd . Long = ` Hugo provides its own webserver which builds and serves the site .
While hugo server is high performance , it is a webserver with limited options .
Many run it in production , but the standard behavior is for people to use it
in development and use a more full featured server such as Nginx or Caddy .
' hugo server ' will avoid writing the rendered and served content to disk ,
preferring to store it in memory .
By default hugo will also watch your files for any changes you make and
automatically rebuild the site . It will then live reload any open browser pages
and push the latest content to them . As most Hugo sites are built in a fraction
of a second , you will be able to save and see your changes nearly instantly . `
cmd . Aliases = [ ] string { "serve" }
cmd . Flags ( ) . IntVarP ( & c . serverPort , "port" , "p" , 1313 , "port on which the server will listen" )
cmd . Flags ( ) . IntVar ( & c . liveReloadPort , "liveReloadPort" , - 1 , "port for live reloading (i.e. 443 in HTTPS proxy situations)" )
cmd . Flags ( ) . StringVarP ( & c . serverInterface , "bind" , "" , "127.0.0.1" , "interface to which the server will bind" )
cmd . Flags ( ) . BoolVarP ( & c . serverWatch , "watch" , "w" , true , "watch filesystem for changes and recreate as needed" )
cmd . Flags ( ) . BoolVar ( & c . noHTTPCache , "noHTTPCache" , false , "prevent HTTP caching" )
cmd . Flags ( ) . BoolVarP ( & c . serverAppend , "appendPort" , "" , true , "append port to baseURL" )
cmd . Flags ( ) . BoolVar ( & c . disableLiveReload , "disableLiveReload" , false , "watch without enabling live browser reload on rebuild" )
cmd . Flags ( ) . BoolVar ( & c . navigateToChanged , "navigateToChanged" , false , "navigate to changed content file on live browser reload" )
cmd . Flags ( ) . BoolVar ( & c . renderToDisk , "renderToDisk" , false , "serve all files from disk (default is from memory)" )
cmd . Flags ( ) . BoolVar ( & c . renderStaticToDisk , "renderStaticToDisk" , false , "serve static files from disk and dynamic files from memory" )
cmd . Flags ( ) . BoolVar ( & c . disableFastRender , "disableFastRender" , false , "enables full re-renders on changes" )
cmd . Flags ( ) . BoolVar ( & c . disableBrowserError , "disableBrowserError" , false , "do not show build errors in the browser" )
cmd . Flags ( ) . String ( "memstats" , "" , "log memory usage to this file" )
cmd . Flags ( ) . String ( "meminterval" , "100ms" , "interval to poll memory usage (requires --memstats), valid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\"." )
2023-05-17 06:45:51 -04:00
2023-05-17 12:45:23 -04:00
r := cd . Root . Command . ( * rootCommand )
applyLocalBuildFlags ( cmd , r )
2023-05-17 06:45:51 -04:00
2023-01-04 12:24:36 -05:00
return nil
}
2023-05-17 12:45:23 -04:00
func ( c * serverCommand ) PreRun ( cd , runner * simplecobra . Commandeer ) error {
2023-01-04 12:24:36 -05:00
c . r = cd . Root . Command . ( * rootCommand )
c . hugoBuilder = newHugoBuilder (
c . r ,
c ,
func ( reloaded bool ) error {
if ! reloaded {
if err := c . createServerPorts ( cd ) ; err != nil {
return err
}
}
if err := c . setBaseURLsInConfig ( ) ; err != nil {
return err
}
if ! reloaded && c . fastRenderMode {
2023-05-19 06:54:42 -04:00
c . withConf ( func ( conf * commonConfig ) {
conf . fs . PublishDir = hugofs . NewHashingFs ( conf . fs . PublishDir , c . changeDetector )
conf . fs . PublishDirStatic = hugofs . NewHashingFs ( conf . fs . PublishDirStatic , c . changeDetector )
} )
2023-01-04 12:24:36 -05:00
}
return nil
} ,
)
destinationFlag := cd . CobraCommand . Flags ( ) . Lookup ( "destination" )
c . renderToDisk = c . renderToDisk || ( destinationFlag != nil && destinationFlag . Changed )
c . doLiveReload = ! c . disableLiveReload
c . fastRenderMode = ! c . disableFastRender
c . showErrorInBrowser = c . doLiveReload && ! c . disableBrowserError
if c . fastRenderMode {
// For now, fast render mode only. It should, however, be fast enough
// for the full variant, too.
c . changeDetector = & fileChangeDetector {
// We use this detector to decide to do a Hot reload of a single path or not.
// We need to filter out source maps and possibly some other to be able
// to make that decision.
irrelevantRe : regexp . MustCompile ( ` \.map$ ` ) ,
}
c . changeDetector . PrepareNew ( )
}
err := c . loadConfig ( cd , true )
if err != nil {
return err
}
return nil
}
func ( c * serverCommand ) setBaseURLsInConfig ( ) error {
if len ( c . serverPorts ) == 0 {
panic ( "no server ports set" )
}
2023-05-19 06:54:42 -04:00
return c . withConfE ( func ( conf * commonConfig ) error {
for i , language := range conf . configs . Languages {
isMultiHost := conf . configs . IsMultihost
var serverPort int
if isMultiHost {
serverPort = c . serverPorts [ i ] . p
} else {
serverPort = c . serverPorts [ 0 ] . p
}
langConfig := conf . configs . LanguageConfigMap [ language . Lang ]
baseURLStr , err := c . fixURL ( langConfig . BaseURL , c . r . baseURL , serverPort )
if err != nil {
return err
}
baseURL , err := urls . NewBaseURLFromString ( baseURLStr )
if err != nil {
return fmt . Errorf ( "failed to create baseURL from %q: %s" , baseURLStr , err )
}
2023-01-04 12:24:36 -05:00
2023-05-19 06:54:42 -04:00
baseURLLiveReload := baseURL
if c . liveReloadPort != - 1 {
baseURLLiveReload , _ = baseURLLiveReload . WithPort ( c . liveReloadPort )
}
langConfig . C . SetBaseURL ( baseURL , baseURLLiveReload )
2023-01-04 12:24:36 -05:00
}
2023-05-19 06:54:42 -04:00
return nil
} )
2022-05-02 10:07:52 -04:00
}
2017-11-02 03:25:20 -04:00
2023-01-04 12:24:36 -05:00
func ( c * serverCommand ) getErrorWithContext ( ) any {
errCount := c . errCount ( )
if errCount == 0 {
return nil
}
m := make ( map [ string ] any )
//xwm["Error"] = errors.New(cleanErrorLog(removeErrorPrefixFromLog(c.r.logger.Errors())))
m [ "Error" ] = errors . New ( cleanErrorLog ( removeErrorPrefixFromLog ( c . r . logger . Errors ( ) ) ) )
m [ "Version" ] = hugo . BuildVersionString ( )
ferrors := herrors . UnwrapFileErrorsWithErrorContext ( c . errState . buildErr ( ) )
m [ "Files" ] = ferrors
return m
}
func ( c * serverCommand ) createServerPorts ( cd * simplecobra . Commandeer ) error {
flags := cd . CobraCommand . Flags ( )
2023-05-19 06:54:42 -04:00
var cerr error
c . withConf ( func ( conf * commonConfig ) {
isMultiHost := conf . configs . IsMultihost
c . serverPorts = make ( [ ] serverPortListener , 1 )
if isMultiHost {
if ! c . serverAppend {
cerr = errors . New ( "--appendPort=false not supported when in multihost mode" )
return
2023-01-04 12:24:36 -05:00
}
2023-05-19 06:54:42 -04:00
c . serverPorts = make ( [ ] serverPortListener , len ( conf . configs . Languages ) )
}
currentServerPort := c . serverPort
for i := 0 ; i < len ( c . serverPorts ) ; i ++ {
l , err := net . Listen ( "tcp" , net . JoinHostPort ( c . serverInterface , strconv . Itoa ( currentServerPort ) ) )
if err == nil {
c . serverPorts [ i ] = serverPortListener { ln : l , p : currentServerPort }
} else {
if i == 0 && flags . Changed ( "port" ) {
// port set explicitly by user -- he/she probably meant it!
cerr = fmt . Errorf ( "server startup failed: %s" , err )
return
}
c . r . Println ( "port" , currentServerPort , "already in use, attempting to use an available port" )
l , sp , err := helpers . TCPListen ( )
if err != nil {
cerr = fmt . Errorf ( "unable to find alternative port to use: %s" , err )
return
}
c . serverPorts [ i ] = serverPortListener { ln : l , p : sp . Port }
2023-01-04 12:24:36 -05:00
}
2023-05-19 06:54:42 -04:00
currentServerPort = c . serverPorts [ i ] . p + 1
2023-01-04 12:24:36 -05:00
}
2023-05-19 06:54:42 -04:00
} )
2023-01-04 12:24:36 -05:00
2023-05-19 06:54:42 -04:00
return cerr
2023-01-04 12:24:36 -05:00
}
// fixURL massages the baseURL into a form needed for serving
// all pages correctly.
func ( c * serverCommand ) fixURL ( baseURL , s string , port int ) ( string , error ) {
useLocalhost := false
if s == "" {
s = baseURL
useLocalhost = true
}
if ! strings . HasSuffix ( s , "/" ) {
s = s + "/"
}
// do an initial parse of the input string
u , err := url . Parse ( s )
if err != nil {
return "" , err
}
// if no Host is defined, then assume that no schema or double-slash were
// present in the url. Add a double-slash and make a best effort attempt.
if u . Host == "" && s != "/" {
s = "//" + s
u , err = url . Parse ( s )
if err != nil {
return "" , err
}
}
if useLocalhost {
if u . Scheme == "https" {
u . Scheme = "http"
}
u . Host = "localhost"
}
if c . serverAppend {
if strings . Contains ( u . Host , ":" ) {
u . Host , _ , err = net . SplitHostPort ( u . Host )
if err != nil {
return "" , fmt . Errorf ( "failed to split baseURL hostport: %w" , err )
}
}
u . Host += fmt . Sprintf ( ":%d" , port )
}
return u . String ( ) , nil
}
func ( c * serverCommand ) partialReRender ( urls ... string ) error {
defer func ( ) {
c . errState . setWasErr ( false )
} ( )
c . errState . setBuildErr ( nil )
visited := make ( map [ string ] bool )
for _ , url := range urls {
visited [ url ] = true
}
2023-05-18 04:36:48 -04:00
h , err := c . hugo ( )
if err != nil {
return err
}
2023-01-04 12:24:36 -05:00
// Note: We do not set NoBuildLock as the file lock is not acquired at this stage.
2023-05-18 04:36:48 -04:00
return h . Build ( hugolib . BuildCfg { NoBuildLock : false , RecentlyVisited : visited , PartialReRender : true , ErrRecovery : c . errState . wasErr ( ) } )
2023-01-04 12:24:36 -05:00
}
func ( c * serverCommand ) serve ( ) error {
2017-11-02 03:25:20 -04:00
var (
baseURLs [ ] string
roots [ ] string
2023-05-19 06:54:42 -04:00
h * hugolib . HugoSites
2017-11-02 03:25:20 -04:00
)
2023-05-19 06:54:42 -04:00
err := c . withConfE ( func ( conf * commonConfig ) error {
isMultiHost := conf . configs . IsMultihost
var err error
h , err = c . r . HugFromConfig ( conf )
if err != nil {
return err
}
2017-11-02 03:25:20 -04:00
2023-05-19 06:54:42 -04:00
if isMultiHost {
for _ , l := range conf . configs . ConfigLangs ( ) {
baseURLs = append ( baseURLs , l . BaseURL ( ) . String ( ) )
roots = append ( roots , l . Language ( ) . Lang )
}
} else {
l := conf . configs . GetFirstLanguageConfig ( )
baseURLs = [ ] string { l . BaseURL ( ) . String ( ) }
roots = [ ] string { "" }
2017-11-02 03:25:20 -04:00
}
2023-05-19 06:54:42 -04:00
return nil
} )
if err != nil {
return err
2014-01-26 04:48:00 -05:00
}
2017-11-02 03:25:20 -04:00
2023-02-18 15:47:35 -05:00
// Cache it here. The HugoSites object may be unavailable later on due to intermittent configuration errors.
2022-05-16 03:22:51 -04:00
// To allow the en user to change the error template while the server is running, we use
// the freshest template we can provide.
var (
errTempl tpl . Template
templHandler tpl . TemplateHandler
)
getErrorTemplateAndHandler := func ( h * hugolib . HugoSites ) ( tpl . Template , tpl . TemplateHandler ) {
if h == nil {
return errTempl , templHandler
}
templHandler := h . Tmpl ( )
errTempl , found := templHandler . Lookup ( "_server/error.html" )
if ! found {
panic ( "template server/error.html not found" )
}
return errTempl , templHandler
2022-05-15 15:01:36 -04:00
}
2023-01-04 12:24:36 -05:00
errTempl , templHandler = getErrorTemplateAndHandler ( h )
2022-05-15 15:01:36 -04:00
2017-11-02 03:25:20 -04:00
srv := & fileServer {
2019-12-10 13:56:44 -05:00
baseURLs : baseURLs ,
roots : roots ,
c : c ,
2022-03-17 17:03:27 -04:00
errorTemplate : func ( ctx any ) ( io . Reader , error ) {
2022-05-16 03:22:51 -04:00
// hugoTry does not block, getErrorTemplateAndHandler will fall back
// to cached values if nil.
templ , handler := getErrorTemplateAndHandler ( c . hugoTry ( ) )
2019-12-10 13:56:44 -05:00
b := & bytes . Buffer { }
2023-02-25 03:24:59 -05:00
err := handler . ExecuteWithContext ( context . Background ( ) , templ , b , ctx )
2019-12-10 13:56:44 -05:00
return b , err
} ,
2017-11-02 03:25:20 -04:00
}
2023-01-04 12:24:36 -05:00
doLiveReload := ! c . disableLiveReload
2017-11-12 04:03:56 -05:00
if doLiveReload {
livereload . Initialize ( )
}
2020-12-02 07:23:25 -05:00
sigs := make ( chan os . Signal , 1 )
2018-01-14 14:58:52 -05:00
signal . Notify ( sigs , syscall . SIGINT , syscall . SIGTERM )
2022-03-14 11:34:23 -04:00
var servers [ ] * http . Server
2018-01-14 14:58:52 -05:00
2022-03-18 03:54:44 -04:00
wg1 , ctx := errgroup . WithContext ( context . Background ( ) )
2018-02-21 03:23:43 -05:00
for i := range baseURLs {
2022-03-18 03:54:44 -04:00
mu , listener , serverURL , endpoint , err := srv . createEndpoint ( i )
2022-03-14 11:34:23 -04:00
srv := & http . Server {
Addr : endpoint ,
Handler : mu ,
}
servers = append ( servers , srv )
2017-11-02 03:25:20 -04:00
2017-11-12 04:03:56 -05:00
if doLiveReload {
2020-12-02 06:52:26 -05:00
u , err := url . Parse ( helpers . SanitizeURL ( baseURLs [ i ] ) )
if err != nil {
return err
}
mu . HandleFunc ( u . Path + "/livereload.js" , livereload . ServeJS )
mu . HandleFunc ( u . Path + "/livereload" , livereload . Handler )
2017-11-12 04:03:56 -05:00
}
2023-05-19 06:54:42 -04:00
c . r . Printf ( "Web Server is available at %s (bind address %s)\n" , serverURL , c . serverInterface )
2022-03-18 03:54:44 -04:00
wg1 . Go ( func ( ) error {
err = srv . Serve ( listener )
2022-03-14 11:34:23 -04:00
if err != nil && err != http . ErrServerClosed {
2022-03-18 03:54:44 -04:00
return err
2017-11-02 03:25:20 -04:00
}
2022-03-18 03:54:44 -04:00
return nil
} )
2017-11-02 03:25:20 -04:00
}
2023-01-04 12:24:36 -05:00
if c . r . IsTestRun ( ) {
// Write a .ready file to disk to signal ready status.
// This is where the test is run from.
testInfo := map [ string ] any {
"baseURLs" : srv . baseURLs ,
}
2018-01-14 14:58:52 -05:00
2023-01-04 12:24:36 -05:00
dir := os . Getenv ( "WORK" )
if dir != "" {
readyFile := filepath . Join ( dir , ".ready" )
// encode the test info as JSON into the .ready file.
b , err := json . Marshal ( testInfo )
if err != nil {
return err
2022-05-15 15:01:36 -04:00
}
2023-01-04 12:24:36 -05:00
err = ioutil . WriteFile ( readyFile , b , 0777 )
if err != nil {
return err
}
}
}
2023-05-19 06:54:42 -04:00
c . r . Println ( "Press Ctrl+C to stop" )
2023-01-04 12:24:36 -05:00
err = func ( ) error {
for {
select {
case <- c . quit :
return nil
case <- sigs :
return nil
case <- ctx . Done ( ) :
return ctx . Err ( )
2022-05-15 15:01:36 -04:00
}
2018-04-11 03:38:58 -04:00
}
2022-05-15 15:01:36 -04:00
} ( )
if err != nil {
2023-05-19 06:54:42 -04:00
c . r . Println ( "Error:" , err )
2018-04-11 03:38:58 -04:00
}
2018-01-14 14:58:52 -05:00
2022-05-15 15:01:36 -04:00
if h := c . hugoTry ( ) ; h != nil {
h . Close ( )
}
2020-12-23 03:26:23 -05:00
2022-03-14 11:34:23 -04:00
ctx , cancel := context . WithTimeout ( context . Background ( ) , 5 * time . Second )
defer cancel ( )
2022-03-18 03:54:44 -04:00
wg2 , ctx := errgroup . WithContext ( ctx )
2022-03-14 11:34:23 -04:00
for _ , srv := range servers {
srv := srv
2022-03-18 03:54:44 -04:00
wg2 . Go ( func ( ) error {
2022-03-14 11:34:23 -04:00
return srv . Shutdown ( ctx )
} )
}
2022-03-18 03:54:44 -04:00
err1 , err2 := wg1 . Wait ( ) , wg2 . Wait ( )
if err1 != nil {
return err1
}
return err2
2013-09-29 02:09:03 -04:00
}
2014-08-22 07:59:59 -04:00
2023-01-04 12:24:36 -05:00
type serverPortListener struct {
p int
ln net . Listener
}
2016-05-12 19:06:56 -04:00
2023-01-04 12:24:36 -05:00
type staticSyncer struct {
c * hugoBuilder
}
2016-05-12 19:06:56 -04:00
2023-05-18 04:36:48 -04:00
func ( s * staticSyncer ) isStatic ( h * hugolib . HugoSites , filename string ) bool {
return h . BaseFs . SourceFilesystems . IsStatic ( filename )
2023-01-04 12:24:36 -05:00
}
2014-08-22 07:59:59 -04:00
2023-01-04 12:24:36 -05:00
func ( s * staticSyncer ) syncsStaticEvents ( staticEvents [ ] fsnotify . Event ) error {
c := s . c
2016-05-12 19:06:56 -04:00
2023-01-04 12:24:36 -05:00
syncFn := func ( sourceFs * filesystems . SourceFilesystem ) ( uint64 , error ) {
publishDir := helpers . FilePathSeparator
if sourceFs . PublishFolder != "" {
publishDir = filepath . Join ( publishDir , sourceFs . PublishFolder )
2016-05-12 19:06:56 -04:00
}
2023-01-04 12:24:36 -05:00
syncer := fsync . NewSyncer ( )
2023-05-19 06:54:42 -04:00
c . withConf ( func ( conf * commonConfig ) {
syncer . NoTimes = conf . configs . Base . NoTimes
syncer . NoChmod = conf . configs . Base . NoChmod
syncer . ChmodFilter = chmodFilter
syncer . SrcFs = sourceFs . Fs
syncer . DestFs = conf . fs . PublishDir
if c . s != nil && c . s . renderStaticToDisk {
syncer . DestFs = conf . fs . PublishDirStatic
}
} )
2016-05-12 19:06:56 -04:00
2023-01-04 12:24:36 -05:00
// prevent spamming the log on changes
logger := helpers . NewDistinctErrorLogger ( )
for _ , ev := range staticEvents {
// Due to our approach of layering both directories and the content's rendered output
// into one we can't accurately remove a file not in one of the source directories.
// If a file is in the local static dir and also in the theme static dir and we remove
// it from one of those locations we expect it to still exist in the destination
//
// If Hugo generates a file (from the content dir) over a static file
// the content generated file should take precedence.
//
// Because we are now watching and handling individual events it is possible that a static
// event that occupies the same path as a content generated file will take precedence
// until a regeneration of the content takes places.
//
// Hugo assumes that these cases are very rare and will permit this bad behavior
// The alternative is to track every single file and which pipeline rendered it
// and then to handle conflict resolution on every event.
fromPath := ev . Name
relPath , found := sourceFs . MakePathRelative ( fromPath )
if ! found {
// Not member of this virtual host.
continue
}
// Remove || rename is harder and will require an assumption.
// Hugo takes the following approach:
// If the static file exists in any of the static source directories after this event
// Hugo will re-sync it.
// If it does not exist in all of the static directories Hugo will remove it.
//
// This assumes that Hugo has not generated content on top of a static file and then removed
// the source of that static file. In this case Hugo will incorrectly remove that file
// from the published directory.
if ev . Op & fsnotify . Rename == fsnotify . Rename || ev . Op & fsnotify . Remove == fsnotify . Remove {
if _ , err := sourceFs . Fs . Stat ( relPath ) ; herrors . IsNotExist ( err ) {
// If file doesn't exist in any static dir, remove it
logger . Println ( "File no longer exists in static dir, removing" , relPath )
2023-05-19 06:54:42 -04:00
c . withConf ( func ( conf * commonConfig ) {
_ = conf . fs . PublishDirStatic . RemoveAll ( relPath )
} )
2023-01-04 12:24:36 -05:00
} else if err == nil {
// If file still exists, sync it
logger . Println ( "Syncing" , relPath , "to" , publishDir )
if err := syncer . Sync ( relPath , relPath ) ; err != nil {
c . r . logger . Errorln ( err )
}
} else {
c . r . logger . Errorln ( err )
}
continue
}
// For all other event operations Hugo will sync static.
logger . Println ( "Syncing" , relPath , "to" , publishDir )
if err := syncer . Sync ( filepath . Join ( publishDir , relPath ) , relPath ) ; err != nil {
c . r . logger . Errorln ( err )
2014-08-22 07:59:59 -04:00
}
}
2023-01-04 12:24:36 -05:00
return 0 , nil
2014-08-22 07:59:59 -04:00
}
2023-01-04 12:24:36 -05:00
_ , err := c . doWithPublishDirs ( syncFn )
return err
2014-08-22 07:59:59 -04:00
}
2014-09-22 09:45:05 -04:00
2023-01-04 12:24:36 -05:00
func chmodFilter ( dst , src os . FileInfo ) bool {
// Hugo publishes data from multiple sources, potentially
// with overlapping directory structures. We cannot sync permissions
// for directories as that would mean that we might end up with write-protected
// directories inside /public.
// One example of this would be syncing from the Go Module cache,
// which have 0555 directories.
return src . IsDir ( )
}
2014-09-22 09:45:05 -04:00
2023-01-04 12:24:36 -05:00
func cleanErrorLog ( content string ) string {
content = strings . ReplaceAll ( content , "\n" , " " )
content = logReplacer . Replace ( content )
content = logDuplicateTemplateExecuteRe . ReplaceAllString ( content , "" )
content = logDuplicateTemplateParseRe . ReplaceAllString ( content , "" )
seen := make ( map [ string ] bool )
parts := strings . Split ( content , ": " )
keep := make ( [ ] string , 0 , len ( parts ) )
for _ , part := range parts {
if seen [ part ] {
continue
2014-09-22 09:45:05 -04:00
}
2023-01-04 12:24:36 -05:00
seen [ part ] = true
keep = append ( keep , part )
}
return strings . Join ( keep , ": " )
}
2014-09-22 09:45:05 -04:00
2023-01-04 12:24:36 -05:00
func injectLiveReloadScript ( src io . Reader , baseURL url . URL ) string {
var b bytes . Buffer
chain := transform . Chain { livereloadinject . New ( baseURL ) }
chain . Apply ( & b , src )
2014-09-22 09:45:05 -04:00
2023-01-04 12:24:36 -05:00
return b . String ( )
}
2014-09-22 09:45:05 -04:00
2023-01-04 12:24:36 -05:00
func partitionDynamicEvents ( sourceFs * filesystems . SourceFilesystems , events [ ] fsnotify . Event ) ( de dynamicEvents ) {
for _ , e := range events {
2023-05-18 04:36:48 -04:00
if ! sourceFs . IsContent ( e . Name ) {
2023-01-04 12:24:36 -05:00
de . AssetEvents = append ( de . AssetEvents , e )
} else {
de . ContentEvents = append ( de . ContentEvents , e )
}
}
return
}
2014-09-22 09:45:05 -04:00
2023-01-04 12:24:36 -05:00
func pickOneWriteOrCreatePath ( events [ ] fsnotify . Event ) string {
name := ""
for _ , ev := range events {
if ev . Op & fsnotify . Write == fsnotify . Write || ev . Op & fsnotify . Create == fsnotify . Create {
if files . IsIndexContentFile ( ev . Name ) {
return ev . Name
2014-09-22 09:45:05 -04:00
}
2023-01-04 12:24:36 -05:00
if files . IsContentFile ( ev . Name ) {
name = ev . Name
}
}
2014-09-22 09:45:05 -04:00
}
2023-01-04 12:24:36 -05:00
return name
}
func removeErrorPrefixFromLog ( content string ) string {
return logErrorRe . ReplaceAllLiteralString ( content , "" )
}
func formatByteCount ( b uint64 ) string {
const unit = 1000
if b < unit {
return fmt . Sprintf ( "%d B" , b )
}
div , exp := int64 ( unit ) , 0
for n := b / unit ; n >= unit ; n /= unit {
div *= unit
exp ++
}
return fmt . Sprintf ( "%.1f %cB" ,
float64 ( b ) / float64 ( div ) , "kMGTPE" [ exp ] )
2014-09-22 09:45:05 -04:00
}