Suppress errors for symbolic links witch point to a file.
authorRené Jochum <rene@jochums.at>
Tue, 17 Feb 2015 21:21:37 +0000 (22:21 +0100)
committerspf13 <steve.francia@gmail.com>
Wed, 18 Feb 2015 03:18:28 +0000 (19:18 -0800)
commands/hugo.go
source/filesystem.go
tpl/template.go

index 986036e7a849272d8dc63715a920bc8e3351d02b..1b19c34a4b8dfcf35e6234f0790eb622398de59c 100644 (file)
@@ -300,7 +300,19 @@ func getDirList() []string {
                }
 
                if fi.Mode()&os.ModeSymlink == os.ModeSymlink {
-                       jww.ERROR.Printf("Symbolic links not supported, skipping '%s'", path)
+                       link, err := filepath.EvalSymlinks(path)
+                       if err != nil {
+                               jww.ERROR.Printf("Cannot read symbolic link '%s', error was: %s", path, err)
+                               return nil
+                       }
+                       linkfi, err := os.Stat(link)
+                       if err != nil {
+                               jww.ERROR.Printf("Cannot stat '%s', error was: %s", link, err)
+                               return nil
+                       }
+                       if !linkfi.Mode().IsRegular() {
+                               jww.ERROR.Printf("Symbolic links for directories not supported, skipping '%s'", path)
+                       }
                        return nil
                }
 
index df0a4989cd98f36c3371980ef4dfbc7392139ad0..597d8c7a989b75b3962b86c0a4aa14655b225cea 100644 (file)
@@ -15,13 +15,14 @@ package source
 
 import (
        "bytes"
-       "github.com/spf13/hugo/helpers"
-       jww "github.com/spf13/jwalterweatherman"
        "io"
        "io/ioutil"
        "os"
        "path/filepath"
        "strings"
+
+       "github.com/spf13/hugo/helpers"
+       jww "github.com/spf13/jwalterweatherman"
 )
 
 type Input interface {
@@ -85,7 +86,19 @@ func (f *Filesystem) captureFiles() {
                }
 
                if fi.Mode()&os.ModeSymlink == os.ModeSymlink {
-                       jww.ERROR.Printf("Symbolic links not supported, skipping '%s'", filePath)
+                       link, err := filepath.EvalSymlinks(filePath)
+                       if err != nil {
+                               jww.ERROR.Printf("Cannot read symbolic link '%s', error was: %s", filePath, err)
+                               return nil
+                       }
+                       linkfi, err := os.Stat(link)
+                       if err != nil {
+                               jww.ERROR.Printf("Cannot stat '%s', error was: %s", link, err)
+                               return nil
+                       }
+                       if !linkfi.Mode().IsRegular() {
+                               jww.ERROR.Printf("Symbolic links for directories not supported, skipping '%s'", filePath)
+                       }
                        return nil
                }
 
index 320f969c836126f6dc1197b28186ac140c899578..08360350002852d0d5ce872ef5a2343d5ec8e922 100644 (file)
@@ -1222,7 +1222,19 @@ func (t *GoHtmlTemplate) loadTemplates(absPath string, prefix string) {
                }
 
                if fi.Mode()&os.ModeSymlink == os.ModeSymlink {
-                       jww.ERROR.Printf("Symbolic links not supported, skipping '%s'", absPath)
+                       link, err := filepath.EvalSymlinks(absPath)
+                       if err != nil {
+                               jww.ERROR.Printf("Cannot read symbolic link '%s', error was: %s", absPath, err)
+                               return nil
+                       }
+                       linkfi, err := os.Stat(link)
+                       if err != nil {
+                               jww.ERROR.Printf("Cannot stat '%s', error was: %s", link, err)
+                               return nil
+                       }
+                       if !linkfi.Mode().IsRegular() {
+                               jww.ERROR.Printf("Symbolic links for directories not supported, skipping '%s'", absPath)
+                       }
                        return nil
                }