mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
Add force flag
If flag is passed the site will be created inside non-empty folder only if there are no existent folders or config with the same name hugo creates. Resolves: #1163
This commit is contained in:
parent
3a412543f6
commit
5e97cf3020
2 changed files with 109 additions and 15 deletions
|
@ -20,6 +20,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"errors"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
"github.com/spf13/hugo/create"
|
"github.com/spf13/hugo/create"
|
||||||
"github.com/spf13/hugo/helpers"
|
"github.com/spf13/hugo/helpers"
|
||||||
|
@ -37,6 +38,7 @@ var contentFrontMatter string
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
newSiteCmd.Flags().StringVarP(&configFormat, "format", "f", "toml", "config & frontmatter format")
|
newSiteCmd.Flags().StringVarP(&configFormat, "format", "f", "toml", "config & frontmatter format")
|
||||||
|
newSiteCmd.Flags().Bool("force", false, "Init inside non-empty directory")
|
||||||
newCmd.Flags().StringVarP(&configFormat, "format", "f", "toml", "frontmatter format")
|
newCmd.Flags().StringVarP(&configFormat, "format", "f", "toml", "frontmatter format")
|
||||||
newCmd.Flags().StringVarP(&contentType, "kind", "k", "", "Content type to create")
|
newCmd.Flags().StringVarP(&contentType, "kind", "k", "", "Content type to create")
|
||||||
newCmd.AddCommand(newSiteCmd)
|
newCmd.AddCommand(newSiteCmd)
|
||||||
|
@ -104,6 +106,45 @@ func NewContent(cmd *cobra.Command, args []string) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func doNewSite(basepath string, force bool) error {
|
||||||
|
dirs := []string{
|
||||||
|
filepath.Join(basepath, "layouts"),
|
||||||
|
filepath.Join(basepath, "content"),
|
||||||
|
filepath.Join(basepath, "archetypes"),
|
||||||
|
filepath.Join(basepath, "static"),
|
||||||
|
filepath.Join(basepath, "data"),
|
||||||
|
}
|
||||||
|
|
||||||
|
if exists, _ := helpers.Exists(basepath, hugofs.SourceFs); exists {
|
||||||
|
if isDir, _ := helpers.IsDir(basepath, hugofs.SourceFs); !isDir {
|
||||||
|
return errors.New(basepath + " already exists but not a directory")
|
||||||
|
}
|
||||||
|
|
||||||
|
isEmpty, _ := helpers.IsEmpty(basepath, hugofs.SourceFs)
|
||||||
|
|
||||||
|
switch {
|
||||||
|
case !isEmpty && !force:
|
||||||
|
return errors.New(basepath + " already exists")
|
||||||
|
|
||||||
|
case !isEmpty && force:
|
||||||
|
all := append(dirs, filepath.Join(basepath, "config."+configFormat))
|
||||||
|
for _, path := range all {
|
||||||
|
if exists, _ := helpers.Exists(path, hugofs.SourceFs); exists {
|
||||||
|
return errors.New(path + " already exists")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, dir := range dirs {
|
||||||
|
hugofs.SourceFs.MkdirAll(dir, 0777)
|
||||||
|
}
|
||||||
|
|
||||||
|
createConfig(basepath, configFormat)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// NewSite creates a new hugo site and initializes a structured Hugo directory.
|
// NewSite creates a new hugo site and initializes a structured Hugo directory.
|
||||||
func NewSite(cmd *cobra.Command, args []string) {
|
func NewSite(cmd *cobra.Command, args []string) {
|
||||||
if len(args) < 1 {
|
if len(args) < 1 {
|
||||||
|
@ -117,24 +158,12 @@ func NewSite(cmd *cobra.Command, args []string) {
|
||||||
jww.FATAL.Fatalln(err)
|
jww.FATAL.Fatalln(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if x, _ := helpers.Exists(createpath, hugofs.SourceFs); x {
|
forceNew, _ := cmd.Flags().GetBool("force")
|
||||||
y, _ := helpers.IsDir(createpath, hugofs.SourceFs)
|
if err := doNewSite(createpath, forceNew); err != nil {
|
||||||
if z, _ := helpers.IsEmpty(createpath, hugofs.SourceFs); y && z {
|
jww.FATAL.Fatalln(err)
|
||||||
jww.INFO.Println(createpath, "already exists and is empty")
|
|
||||||
} else {
|
|
||||||
jww.FATAL.Fatalln(createpath, "already exists and is not empty")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mkdir(createpath, "layouts")
|
|
||||||
mkdir(createpath, "content")
|
|
||||||
mkdir(createpath, "archetypes")
|
|
||||||
mkdir(createpath, "static")
|
|
||||||
mkdir(createpath, "data")
|
|
||||||
|
|
||||||
createConfig(createpath, configFormat)
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewTheme creates a new Hugo theme.
|
// NewTheme creates a new Hugo theme.
|
||||||
func NewTheme(cmd *cobra.Command, args []string) {
|
func NewTheme(cmd *cobra.Command, args []string) {
|
||||||
InitializeConfig()
|
InitializeConfig()
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
package commands
|
package commands
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"github.com/spf13/afero"
|
||||||
|
"github.com/spf13/hugo/hugofs"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"testing"
|
"testing"
|
||||||
|
"os"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Issue #1133
|
// Issue #1133
|
||||||
|
@ -12,3 +15,65 @@ func TestNewContentPathSectionWithForwardSlashes(t *testing.T) {
|
||||||
assert.Equal(t, filepath.FromSlash("/post/new.md"), p)
|
assert.Equal(t, filepath.FromSlash("/post/new.md"), p)
|
||||||
assert.Equal(t, "post", s)
|
assert.Equal(t, "post", s)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func checkNewSiteInited(basepath string, t *testing.T) {
|
||||||
|
paths := []string{
|
||||||
|
filepath.Join(basepath, "layouts"),
|
||||||
|
filepath.Join(basepath, "content"),
|
||||||
|
filepath.Join(basepath, "archetypes"),
|
||||||
|
filepath.Join(basepath, "static"),
|
||||||
|
filepath.Join(basepath, "data"),
|
||||||
|
filepath.Join(basepath, "config.toml"),
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, path := range paths {
|
||||||
|
_, err := hugofs.SourceFs.Stat(path)
|
||||||
|
assert.Nil(t, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestDoNewSite(t *testing.T) {
|
||||||
|
basepath := filepath.Join(os.TempDir(), "blog")
|
||||||
|
hugofs.SourceFs = new(afero.MemMapFs)
|
||||||
|
err := doNewSite(basepath, false)
|
||||||
|
assert.Nil(t, err)
|
||||||
|
|
||||||
|
checkNewSiteInited(basepath, t)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestDoNewSite_error_base_exists(t *testing.T) {
|
||||||
|
basepath := filepath.Join(os.TempDir(), "blog")
|
||||||
|
hugofs.SourceFs = new(afero.MemMapFs)
|
||||||
|
hugofs.SourceFs.MkdirAll(basepath, 777)
|
||||||
|
err := doNewSite(basepath, false)
|
||||||
|
assert.NotNil(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestDoNewSite_force_empty_dir(t *testing.T) {
|
||||||
|
basepath := filepath.Join(os.TempDir(), "blog")
|
||||||
|
hugofs.SourceFs = new(afero.MemMapFs)
|
||||||
|
hugofs.SourceFs.MkdirAll(basepath, 777)
|
||||||
|
err := doNewSite(basepath, true)
|
||||||
|
assert.Nil(t, err)
|
||||||
|
|
||||||
|
checkNewSiteInited(basepath, t)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestDoNewSite_error_force_dir_inside_exists(t *testing.T) {
|
||||||
|
basepath := filepath.Join(os.TempDir(), "blog")
|
||||||
|
contentPath := filepath.Join(basepath, "content")
|
||||||
|
hugofs.SourceFs = new(afero.MemMapFs)
|
||||||
|
hugofs.SourceFs.MkdirAll(contentPath, 777)
|
||||||
|
err := doNewSite(basepath, true)
|
||||||
|
assert.NotNil(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestDoNewSite_error_force_config_inside_exists(t *testing.T) {
|
||||||
|
basepath := filepath.Join(os.TempDir(), "blog")
|
||||||
|
configPath := filepath.Join(basepath, "config.toml")
|
||||||
|
hugofs.SourceFs = new(afero.MemMapFs)
|
||||||
|
hugofs.SourceFs.MkdirAll(basepath, 777)
|
||||||
|
hugofs.SourceFs.Create(configPath)
|
||||||
|
err := doNewSite(basepath, true)
|
||||||
|
assert.NotNil(t, err)
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue