Make the "is this a Hugo Module" logic more lenient
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 3 Sep 2019 10:58:02 +0000 (12:58 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 3 Sep 2019 13:12:33 +0000 (15:12 +0200)
Now we only try to load modules via Go if there is one or more modules imported in project config.

Fixes #6299

hugolib/config.toml [new file with mode: 0755]
hugolib/hugo_modules_test.go
modules/client.go
modules/collect.go
modules/config.go
modules/module.go

diff --git a/hugolib/config.toml b/hugolib/config.toml
new file mode 100755 (executable)
index 0000000..0563153
--- /dev/null
@@ -0,0 +1 @@
+workingdir = "/private/var/folders/n6/s_85mm8d31j6yctssnmn_g1r0000gn/T/hugo-no-mod217094359"
index 826f5f1e5e862656b66cbb3b0def07633d4c45de..9ba039c7430ad5612ba69c041378be71dc006a56 100644 (file)
@@ -541,3 +541,28 @@ title: "My Page"
 
        b.AssertFileContent("public/mypage/index.html", "Permalink: https://example.org/mypage/")
 }
+
+// https://github.com/gohugoio/hugo/issues/6299
+func TestSiteWithGoModButNoModules(t *testing.T) {
+       t.Parallel()
+
+       c := qt.New(t)
+       // We need to use the OS fs for this.
+       workDir, clean, err := htesting.CreateTempDir(hugofs.Os, "hugo-no-mod")
+       c.Assert(err, qt.IsNil)
+
+       cfg := viper.New()
+       cfg.Set("workingDir", workDir)
+       fs := hugofs.NewFrom(hugofs.Os, cfg)
+
+       defer clean()
+
+       b := newTestSitesBuilder(t)
+       b.Fs = fs
+
+       b.WithWorkingDir(workDir).WithViper(cfg)
+
+       b.WithSourceFile("go.mod", "")
+       b.Build(BuildCfg{})
+
+}
index ae1a6a2b24919a08f6c8b95c2ad94611916547e8..a743df5bd46b72fb6c2a0cd1c1d6893826268c80 100644 (file)
@@ -279,12 +279,12 @@ func (c *Client) Init(path string) error {
        return nil
 }
 
-func (c *Client) isProbablyModule(path string) bool {
+func isProbablyModule(path string) bool {
        return module.CheckPath(path) == nil
 }
 
 func (c *Client) listGoMods() (goModules, error) {
-       if c.GoModulesFilename == "" {
+       if c.GoModulesFilename == "" || !c.moduleConfig.hasModuleImport() {
                return nil, nil
        }
 
index 24b80a1d7a28e3e1d21808dfd73b1e7b49c537e0..731a991b80dc1be64ce6b118ba75f0c244332d31 100644 (file)
@@ -250,8 +250,7 @@ func (c *collector) add(owner *moduleAdapter, moduleImport Import, disabled bool
                }
 
                if moduleDir == "" {
-
-                       if c.GoModulesFilename != "" && c.isProbablyModule(modulePath) {
+                       if c.GoModulesFilename != "" && isProbablyModule(modulePath) {
                                // Try to "go get" it and reload the module configuration.
                                if err := c.Get(modulePath); err != nil {
                                        return nil, err
@@ -301,10 +300,6 @@ func (c *collector) add(owner *moduleAdapter, moduleImport Import, disabled bool
                ma.path = modulePath
        }
 
-       if err := ma.validateAndApplyDefaults(c.fs); err != nil {
-               return nil, err
-       }
-
        if !moduleImport.IgnoreConfig {
                if err := c.applyThemeConfig(ma); err != nil {
                        return nil, err
index 62e6f5e4cd977811284d48304625d28aa25a868c..a50845df30981dc420ffe8f605c4d0159c3c0929 100644 (file)
@@ -235,6 +235,17 @@ type Config struct {
        Private string
 }
 
+// hasModuleImport reports whether the project config have one or more
+// modules imports, e.g. github.com/bep/myshortcodes.
+func (c Config) hasModuleImport() bool {
+       for _, imp := range c.Imports {
+               if isProbablyModule(imp.Path) {
+                       return true
+               }
+       }
+       return false
+}
+
 // HugoVersion holds Hugo binary version requirements for a module.
 type HugoVersion struct {
        // The minimum Hugo version that this module works with.
index f719116174041b70c878fa416c029aea07b0e46e..a5f70763587872705b5c3600136e41900d974641 100644 (file)
@@ -18,7 +18,6 @@ package modules
 
 import (
        "github.com/gohugoio/hugo/config"
-       "github.com/spf13/afero"
 )
 
 var _ Module = (*moduleAdapter)(nil)
@@ -173,24 +172,3 @@ func (m *moduleAdapter) Watch() bool {
 
        return false
 }
-
-func (m *moduleAdapter) validateAndApplyDefaults(fs afero.Fs) error {
-
-       /*if len(m.modImport.Mounts) == 0 {
-               // Create default mount points for every component folder that
-               // exists in the module.
-               for _, componentFolder := range files.ComponentFolders {
-                       sourceDir := filepath.Join(dir, componentFolder)
-                       _, err := fs.Stat(sourceDir)
-                       if err == nil {
-                               m.modImport.Mounts = append(m.modImport.Mounts, Mount{
-                                       Source: componentFolder,
-                                       Target: componentFolder,
-                               })
-                       }
-               }
-       }*/
-
-       return nil
-
-}