// Copyright 2023 The Hugo Authors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // 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 ( "bytes" "context" "errors" "fmt" "path/filepath" "strings" "github.com/bep/simplecobra" "github.com/gohugoio/hugo/common/htime" "github.com/gohugoio/hugo/config" "github.com/gohugoio/hugo/create" "github.com/gohugoio/hugo/helpers" "github.com/gohugoio/hugo/parser" "github.com/gohugoio/hugo/parser/metadecoders" "github.com/spf13/afero" "github.com/spf13/cobra" ) func newNewCommand() *newCommand { var ( configFormat string force bool contentType string ) var c *newCommand c = &newCommand{ commands: []simplecobra.Commander{ &simpleCommand{ name: "content", use: "content [path]", short: "Create new content for your site", long: `Create a new content file and automatically set the date and title. It will guess which kind of file to create based on the path provided. You can also specify the kind with ` + "`-k KIND`" + `. If archetypes are provided in your theme or site, they will be used. Ensure you run this within the root directory of your site.`, run: func(ctx context.Context, cd *simplecobra.Commandeer, r *rootCommand, args []string) error { if len(args) < 1 { return errors.New("path needs to be provided") } h, err := r.Hugo(flagsToCfg(cd, nil)) if err != nil { return err } return create.NewContent(h, contentType, args[0], force) }, withc: func(cmd *cobra.Command) { cmd.Flags().StringVarP(&contentType, "kind", "k", "", "content type to create") cmd.Flags().String("editor", "", "edit new content with this editor, if provided") cmd.Flags().BoolVarP(&force, "force", "f", false, "overwrite file if it already exists") }, }, &simpleCommand{ name: "site", use: "site [path]", short: "Create a new site (skeleton)", long: `Create a new site in the provided directory. The new site will have the correct structure, but no content or theme yet. Use ` + "`hugo new [contentPath]`" + ` to create new content.`, run: func(ctx context.Context, cd *simplecobra.Commandeer, r *rootCommand, args []string) error { if len(args) < 1 { return errors.New("path needs to be provided") } createpath, err := filepath.Abs(filepath.Clean(args[0])) if err != nil { return err } cfg := config.New() cfg.Set("workingDir", createpath) cfg.Set("publishDir", "public") conf, err := r.ConfigFromProvider(r.configVersionID.Load(), flagsToCfg(cd, cfg)) if err != nil { return err } sourceFs := conf.fs.Source archeTypePath := filepath.Join(createpath, "archetypes") dirs := []string{ archeTypePath, filepath.Join(createpath, "assets"), filepath.Join(createpath, "content"), filepath.Join(createpath, "data"), filepath.Join(createpath, "layouts"), filepath.Join(createpath, "static"), filepath.Join(createpath, "themes"), } if exists, _ := helpers.Exists(createpath, sourceFs); exists { if isDir, _ := helpers.IsDir(createpath, sourceFs); !isDir { return errors.New(createpath + " already exists but not a directory") } isEmpty, _ := helpers.IsEmpty(createpath, sourceFs) switch { case !isEmpty && !force: return errors.New(createpath + " already exists and is not empty. See --force.") case !isEmpty && force: all := append(dirs, filepath.Join(createpath, "hugo."+configFormat)) for _, path := range all { if exists, _ := helpers.Exists(path, sourceFs); exists { return errors.New(path + " already exists") } } } } for _, dir := range dirs { if err := sourceFs.MkdirAll(dir, 0777); err != nil { return fmt.Errorf("failed to create dir: %w", err) } } c.newSiteCreateConfig(sourceFs, createpath, configFormat) // Create a default archetype file. helpers.SafeWriteToDisk(filepath.Join(archeTypePath, "default.md"), strings.NewReader(create.DefaultArchetypeTemplateTemplate), sourceFs) r.Printf("Congratulations! Your new Hugo site is created in %s.\n\n", createpath) r.Println(c.newSiteNextStepsText()) return nil }, withc: func(cmd *cobra.Command) { cmd.Flags().StringVarP(&configFormat, "format", "f", "toml", "config file format") cmd.Flags().BoolVar(&force, "force", false, "init inside non-empty directory") }, }, &simpleCommand{ name: "theme", use: "theme [path]", short: "Create a new site (skeleton)", long: `Create a new site in the provided directory. The new site will have the correct structure, but no content or theme yet. Use ` + "`hugo new [contentPath]`" + ` to create new content.`, run: func(ctx context.Context, cd *simplecobra.Commandeer, r *rootCommand, args []string) error { h, err := r.Hugo(flagsToCfg(cd, nil)) if err != nil { return err } ps := h.PathSpec sourceFs := ps.Fs.Source themesDir := h.Configs.LoadingInfo.BaseConfig.ThemesDir createpath := ps.AbsPathify(filepath.Join(themesDir, args[0])) r.Println("Creating theme at", createpath) if x, _ := helpers.Exists(createpath, sourceFs); x { return errors.New(createpath + " already exists") } for _, filename := range []string{ "index.html", "404.html", "_default/list.html", "_default/single.html", "partials/head.html", "partials/header.html", "partials/footer.html", } { touchFile(sourceFs, filepath.Join(createpath, "layouts", filename)) } baseofDefault := []byte(` {{- partial "head.html" . -}}
{{- partial "header.html" . -}}