Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-07-10 20:37:27 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-09-11 21:00:38 +0300
commit364e69ab7f54ab7a9901644647125f21cd39e98c (patch)
treedcc48331b2a7d14c885696bfc5b844a206be0bad /hugolib
parente70cf1ace45498366d029e699af39441fab6bd0f (diff)
Handle symlink change event
Hugo 0.16 announced support for symbolic links for the root folders, /content, /static etc., but this got broken pretty fast. The main problem this commit tries to solve is the matching of file change events to "what changed". An example: ContentDir: /mysites/site/content where /mysites/site/content is a symlink to /mycontent /mycontent: /mypost1.md /post/mypost2.md * A change to mypost1.md (on OS X) will trigger a file change event with name "/mycontent/mypost1.md" * A change to mypost2.md gives event with name "/mysites/site/content/mypost2.md" The first change will not trigger a correct update of Hugo before this commit. This commit fixes this by doing a two-step check: 1. Check if "/mysites/site/content/mypost2.md" is within /mysites/site/content 2. Check if "/mysites/site/content/mypost2.md" is within the real path that /mysites/site/content points to Fixes #2265 Closes #2273
Diffstat (limited to 'hugolib')
-rw-r--r--hugolib/site.go69
1 files changed, 62 insertions, 7 deletions
diff --git a/hugolib/site.go b/hugolib/site.go
index 6bff3b038..c2acd493c 100644
--- a/hugolib/site.go
+++ b/hugolib/site.go
@@ -483,16 +483,15 @@ func (s *Site) reBuild(events []fsnotify.Event) (whatChanged, error) {
logger := helpers.NewDistinctFeedbackLogger()
for _, ev := range events {
- // Need to re-read source
- if strings.HasPrefix(ev.Name, s.absContentDir()) {
+ if s.isContentDirEvent(ev) {
logger.Println("Source changed", ev.Name)
sourceChanged = append(sourceChanged, ev)
}
- if strings.HasPrefix(ev.Name, s.absLayoutDir()) || strings.HasPrefix(ev.Name, s.absThemeDir()) {
+ if s.isLayoutDirEvent(ev) || s.isThemeDirEvent(ev) {
logger.Println("Template changed", ev.Name)
tmplChanged = append(tmplChanged, ev)
}
- if strings.HasPrefix(ev.Name, s.absDataDir()) {
+ if s.isDataDirEvent(ev) {
logger.Println("Data changed", ev.Name)
dataChanged = append(dataChanged, ev)
}
@@ -553,7 +552,7 @@ func (s *Site) reBuild(events []fsnotify.Event) (whatChanged, error) {
// so we do this first to prevent races.
if ev.Op&fsnotify.Remove == fsnotify.Remove {
//remove the file & a create will follow
- path, _ := helpers.GetRelativePath(ev.Name, s.absContentDir())
+ path, _ := helpers.GetRelativePath(ev.Name, s.getContentDir(ev.Name))
s.removePageByPath(path)
continue
}
@@ -564,7 +563,7 @@ func (s *Site) reBuild(events []fsnotify.Event) (whatChanged, error) {
if ev.Op&fsnotify.Rename == fsnotify.Rename {
// If the file is still on disk, it's only been updated, if it's not, it's been moved
if ex, err := afero.Exists(hugofs.Source(), ev.Name); !ex || err != nil {
- path, _ := helpers.GetRelativePath(ev.Name, s.absContentDir())
+ path, _ := helpers.GetRelativePath(ev.Name, s.getContentDir(ev.Name))
s.removePageByPath(path)
continue
}
@@ -948,18 +947,74 @@ func (s *Site) absI18nDir() string {
return helpers.AbsPathify(viper.GetString("I18nDir"))
}
+func (s *Site) isDataDirEvent(e fsnotify.Event) bool {
+ return s.getDataDir(e.Name) != ""
+}
+
+func (s *Site) getDataDir(path string) string {
+ return getRealDir(s.absDataDir(), path)
+}
+
func (s *Site) absThemeDir() string {
return helpers.AbsPathify(viper.GetString("themesDir") + "/" + viper.GetString("theme"))
}
+func (s *Site) isThemeDirEvent(e fsnotify.Event) bool {
+ return s.getThemeDir(e.Name) != ""
+}
+
+func (s *Site) getThemeDir(path string) string {
+ return getRealDir(s.absThemeDir(), path)
+}
+
func (s *Site) absLayoutDir() string {
return helpers.AbsPathify(viper.GetString("LayoutDir"))
}
+func (s *Site) isLayoutDirEvent(e fsnotify.Event) bool {
+ return s.getLayoutDir(e.Name) != ""
+}
+
+func (s *Site) getLayoutDir(path string) string {
+ return getRealDir(s.absLayoutDir(), path)
+}
+
func (s *Site) absContentDir() string {
return helpers.AbsPathify(viper.GetString("ContentDir"))
}
+func (s *Site) isContentDirEvent(e fsnotify.Event) bool {
+ return s.getContentDir(e.Name) != ""
+}
+
+func (s *Site) getContentDir(path string) string {
+ return getRealDir(s.absContentDir(), path)
+}
+
+// getRealDir gets the base path of the given path, also handling the case where
+// base is a symlinked folder.
+func getRealDir(base, path string) string {
+
+ if strings.HasPrefix(path, base) {
+ return base
+ }
+
+ realDir, err := helpers.GetRealPath(hugofs.Source(), base)
+
+ if err != nil {
+ if !os.IsNotExist(err) {
+ jww.ERROR.Printf("Failed to get real path for %s: %s", path, err)
+ }
+ return ""
+ }
+
+ if strings.HasPrefix(path, realDir) {
+ return realDir
+ }
+
+ return ""
+}
+
func (s *Site) absPublishDir() string {
return helpers.AbsPathify(viper.GetString("PublishDir"))
}
@@ -980,7 +1035,7 @@ func (s *Site) reReadFile(absFilePath string) (*source.File, error) {
if err != nil {
return nil, err
}
- file, err = source.NewFileFromAbs(s.absContentDir(), absFilePath, reader)
+ file, err = source.NewFileFromAbs(s.getContentDir(absFilePath), absFilePath, reader)
if err != nil {
return nil, err