2019-01-02 06:33:26 -05:00
|
|
|
// Copyright 2019 The Hugo Authors. All rights reserved.
|
2014-11-19 16:24:30 -05:00
|
|
|
//
|
2015-11-23 22:16:36 -05:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
2014-11-19 16:24:30 -05:00
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2015-11-23 22:16:36 -05:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2014-11-19 16:24:30 -05:00
|
|
|
//
|
|
|
|
// 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 (
|
2019-02-20 20:34:32 -05:00
|
|
|
"encoding/csv"
|
|
|
|
"os"
|
2019-05-04 10:21:21 -04:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2019-02-20 20:34:32 -05:00
|
|
|
"time"
|
2014-11-19 16:24:30 -05:00
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/hugolib"
|
2019-01-02 06:33:26 -05:00
|
|
|
"github.com/gohugoio/hugo/resources/resource"
|
2017-06-13 13:07:35 -04:00
|
|
|
"github.com/spf13/cobra"
|
2016-11-22 12:47:20 -05:00
|
|
|
jww "github.com/spf13/jwalterweatherman"
|
2014-11-19 16:24:30 -05:00
|
|
|
)
|
|
|
|
|
2018-04-09 14:42:08 -04:00
|
|
|
var _ cmder = (*listCmd)(nil)
|
2015-08-04 05:15:12 -04:00
|
|
|
|
2018-04-09 14:42:08 -04:00
|
|
|
type listCmd struct {
|
2020-01-31 03:09:11 -05:00
|
|
|
*baseBuilderCmd
|
2014-11-19 16:24:30 -05:00
|
|
|
}
|
|
|
|
|
2022-03-17 17:03:27 -04:00
|
|
|
func (lc *listCmd) buildSites(config map[string]any) (*hugolib.HugoSites, error) {
|
2019-05-04 10:21:21 -04:00
|
|
|
cfgInit := func(c *commandeer) error {
|
|
|
|
for key, value := range config {
|
|
|
|
c.Set(key, value)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-08-31 11:02:51 -04:00
|
|
|
c, err := initializeConfig(true, true, false, &lc.hugoBuilderCommon, lc, cfgInit)
|
2019-05-04 10:21:21 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
sites, err := hugolib.NewHugoSites(*c.DepsCfg)
|
|
|
|
if err != nil {
|
|
|
|
return nil, newSystemError("Error creating sites", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := sites.Build(hugolib.BuildCfg{SkipRender: true}); err != nil {
|
|
|
|
return nil, newSystemError("Error Processing Source Content", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return sites, nil
|
|
|
|
}
|
|
|
|
|
2020-01-31 03:09:11 -05:00
|
|
|
func (b *commandsBuilder) newListCmd() *listCmd {
|
2018-04-09 14:42:08 -04:00
|
|
|
cc := &listCmd{}
|
2014-11-19 16:24:30 -05:00
|
|
|
|
2020-01-31 03:09:11 -05:00
|
|
|
cmd := &cobra.Command{
|
2018-04-09 14:42:08 -04:00
|
|
|
Use: "list",
|
|
|
|
Short: "Listing out various types of content",
|
|
|
|
Long: `Listing out various types of content.
|
2014-11-19 16:24:30 -05:00
|
|
|
|
2018-04-09 14:42:08 -04:00
|
|
|
List requires a subcommand, e.g. ` + "`hugo list drafts`.",
|
|
|
|
RunE: nil,
|
2020-01-31 03:09:11 -05:00
|
|
|
}
|
2018-04-09 14:42:08 -04:00
|
|
|
|
2020-01-31 03:09:11 -05:00
|
|
|
cmd.AddCommand(
|
2018-04-09 14:42:08 -04:00
|
|
|
&cobra.Command{
|
|
|
|
Use: "drafts",
|
|
|
|
Short: "List all drafts",
|
|
|
|
Long: `List all of the drafts in your content directory.`,
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2022-03-17 17:03:27 -04:00
|
|
|
sites, err := cc.buildSites(map[string]any{"buildDrafts": true})
|
2018-04-09 14:42:08 -04:00
|
|
|
if err != nil {
|
2019-05-04 10:21:21 -04:00
|
|
|
return newSystemError("Error building sites", err)
|
2018-04-09 14:42:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, p := range sites.Pages() {
|
2019-04-18 03:25:40 -04:00
|
|
|
if p.Draft() {
|
2019-05-04 10:21:21 -04:00
|
|
|
jww.FEEDBACK.Println(strings.TrimPrefix(p.File().Filename(), sites.WorkingDir+string(os.PathSeparator)))
|
2018-04-09 14:42:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&cobra.Command{
|
|
|
|
Use: "future",
|
|
|
|
Short: "List all posts dated in the future",
|
2019-05-04 10:21:21 -04:00
|
|
|
Long: `List all of the posts in your content directory which will be posted in the future.`,
|
2018-04-09 14:42:08 -04:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2022-03-17 17:03:27 -04:00
|
|
|
sites, err := cc.buildSites(map[string]any{"buildFuture": true})
|
2018-04-09 14:42:08 -04:00
|
|
|
if err != nil {
|
2019-05-04 10:21:21 -04:00
|
|
|
return newSystemError("Error building sites", err)
|
2018-04-09 14:42:08 -04:00
|
|
|
}
|
|
|
|
|
2022-04-26 13:57:04 -04:00
|
|
|
if err != nil {
|
|
|
|
return newSystemError("Error building sites", err)
|
|
|
|
}
|
|
|
|
|
2019-02-20 20:34:32 -05:00
|
|
|
writer := csv.NewWriter(os.Stdout)
|
|
|
|
defer writer.Flush()
|
|
|
|
|
2018-04-09 14:42:08 -04:00
|
|
|
for _, p := range sites.Pages() {
|
2019-01-02 06:33:26 -05:00
|
|
|
if resource.IsFuture(p) {
|
2019-05-04 10:21:21 -04:00
|
|
|
err := writer.Write([]string{
|
|
|
|
strings.TrimPrefix(p.File().Filename(), sites.WorkingDir+string(os.PathSeparator)),
|
|
|
|
p.PublishDate().Format(time.RFC3339),
|
|
|
|
})
|
2019-02-20 20:34:32 -05:00
|
|
|
if err != nil {
|
|
|
|
return newSystemError("Error writing future posts to stdout", err)
|
|
|
|
}
|
2018-04-09 14:42:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&cobra.Command{
|
|
|
|
Use: "expired",
|
|
|
|
Short: "List all posts already expired",
|
2019-05-04 10:21:21 -04:00
|
|
|
Long: `List all of the posts in your content directory which has already expired.`,
|
2018-04-09 14:42:08 -04:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2022-03-17 17:03:27 -04:00
|
|
|
sites, err := cc.buildSites(map[string]any{"buildExpired": true})
|
2018-04-09 14:42:08 -04:00
|
|
|
if err != nil {
|
2019-05-04 10:21:21 -04:00
|
|
|
return newSystemError("Error building sites", err)
|
2018-04-09 14:42:08 -04:00
|
|
|
}
|
2016-08-05 10:11:03 -04:00
|
|
|
|
2022-04-26 13:57:04 -04:00
|
|
|
if err != nil {
|
|
|
|
return newSystemError("Error building sites", err)
|
|
|
|
}
|
|
|
|
|
2019-02-20 20:34:32 -05:00
|
|
|
writer := csv.NewWriter(os.Stdout)
|
|
|
|
defer writer.Flush()
|
|
|
|
|
2018-04-09 14:42:08 -04:00
|
|
|
for _, p := range sites.Pages() {
|
2019-01-02 06:33:26 -05:00
|
|
|
if resource.IsExpired(p) {
|
2019-05-04 10:21:21 -04:00
|
|
|
err := writer.Write([]string{
|
|
|
|
strings.TrimPrefix(p.File().Filename(), sites.WorkingDir+string(os.PathSeparator)),
|
|
|
|
p.ExpiryDate().Format(time.RFC3339),
|
|
|
|
})
|
2019-02-20 20:34:32 -05:00
|
|
|
if err != nil {
|
|
|
|
return newSystemError("Error writing expired posts to stdout", err)
|
|
|
|
}
|
2018-04-09 14:42:08 -04:00
|
|
|
}
|
|
|
|
}
|
2016-05-11 10:11:23 -04:00
|
|
|
|
2018-04-09 14:42:08 -04:00
|
|
|
return nil
|
2019-05-04 10:21:21 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
&cobra.Command{
|
|
|
|
Use: "all",
|
|
|
|
Short: "List all posts",
|
|
|
|
Long: `List all of the posts in your content directory, include drafts, future and expired pages.`,
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2022-03-17 17:03:27 -04:00
|
|
|
sites, err := cc.buildSites(map[string]any{
|
2019-05-04 10:21:21 -04:00
|
|
|
"buildExpired": true,
|
|
|
|
"buildDrafts": true,
|
|
|
|
"buildFuture": true,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return newSystemError("Error building sites", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
writer := csv.NewWriter(os.Stdout)
|
|
|
|
defer writer.Flush()
|
2016-05-11 10:11:23 -04:00
|
|
|
|
2019-05-04 10:21:21 -04:00
|
|
|
writer.Write([]string{
|
|
|
|
"path",
|
|
|
|
"slug",
|
|
|
|
"title",
|
|
|
|
"date",
|
|
|
|
"expiryDate",
|
|
|
|
"publishDate",
|
|
|
|
"draft",
|
|
|
|
"permalink",
|
|
|
|
})
|
|
|
|
for _, p := range sites.Pages() {
|
|
|
|
if !p.IsPage() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
err := writer.Write([]string{
|
|
|
|
strings.TrimPrefix(p.File().Filename(), sites.WorkingDir+string(os.PathSeparator)),
|
|
|
|
p.Slug(),
|
|
|
|
p.Title(),
|
|
|
|
p.Date().Format(time.RFC3339),
|
|
|
|
p.ExpiryDate().Format(time.RFC3339),
|
|
|
|
p.PublishDate().Format(time.RFC3339),
|
|
|
|
strconv.FormatBool(p.Draft()),
|
|
|
|
p.Permalink(),
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return newSystemError("Error writing posts to stdout", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2018-04-09 14:42:08 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
2016-05-11 10:11:23 -04:00
|
|
|
|
2020-01-31 03:09:11 -05:00
|
|
|
cc.baseBuilderCmd = b.newBuilderBasicCmd(cmd)
|
2016-05-11 10:11:23 -04:00
|
|
|
|
2018-04-09 14:42:08 -04:00
|
|
|
return cc
|
2016-05-11 10:11:23 -04:00
|
|
|
}
|