| 
									
										
										
										
											2019-01-02 12:33:26 +01: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-21 14:34:32 +13:00
										 |  |  | 	"encoding/csv"
 | 
					
						
							|  |  |  | 	"os"
 | 
					
						
							| 
									
										
										
										
											2019-05-04 21:21:21 +07:00
										 |  |  | 	"strconv"
 | 
					
						
							|  |  |  | 	"strings"
 | 
					
						
							| 
									
										
										
										
											2019-02-21 14:34:32 +13:00
										 |  |  | 	"time"
 | 
					
						
							| 
									
										
										
										
											2014-11-19 16:24:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 18:42:45 +02:00
										 |  |  | 	"github.com/gohugoio/hugo/hugolib"
 | 
					
						
							| 
									
										
										
										
											2019-01-02 12:33:26 +01:00
										 |  |  | 	"github.com/gohugoio/hugo/resources/resource"
 | 
					
						
							| 
									
										
										
										
											2017-06-13 19:07:35 +02:00
										 |  |  | 	"github.com/spf13/cobra"
 | 
					
						
							| 
									
										
										
										
											2016-11-22 18:47:20 +01:00
										 |  |  | 	jww "github.com/spf13/jwalterweatherman"
 | 
					
						
							| 
									
										
										
										
											2014-11-19 16:24:30 -05:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | var _ cmder = (*listCmd)(nil)
 | 
					
						
							| 
									
										
										
										
											2015-08-04 03:15:12 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | type listCmd struct {
 | 
					
						
							| 
									
										
										
										
											2020-01-31 09:09:11 +01:00
										 |  |  | 	*baseBuilderCmd
 | 
					
						
							| 
									
										
										
										
											2014-11-19 16:24:30 -05:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-04 21:21:21 +07:00
										 |  |  | func (lc *listCmd) buildSites(config map[string]interface{}) (*hugolib.HugoSites, error) {
 | 
					
						
							|  |  |  | 	cfgInit := func(c *commandeer) error {
 | 
					
						
							|  |  |  | 		for key, value := range config {
 | 
					
						
							|  |  |  | 			c.Set(key, value)
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		return nil
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	c, err := initializeConfig(true, false, &lc.hugoBuilderCommon, lc, cfgInit)
 | 
					
						
							|  |  |  | 	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 09:09:11 +01:00
										 |  |  | func (b *commandsBuilder) newListCmd() *listCmd {
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 	cc := &listCmd{}
 | 
					
						
							| 
									
										
										
										
											2014-11-19 16:24:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-31 09:09:11 +01:00
										 |  |  | 	cmd := &cobra.Command{
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02: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 20:42:08 +02:00
										 |  |  | List requires a subcommand, e.g. ` + "`hugo list drafts`.",
 | 
					
						
							|  |  |  | 		RunE: nil,
 | 
					
						
							| 
									
										
										
										
											2020-01-31 09:09:11 +01:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-31 09:09:11 +01:00
										 |  |  | 	cmd.AddCommand(
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02: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 {
 | 
					
						
							| 
									
										
										
										
											2019-05-04 21:21:21 +07:00
										 |  |  | 				sites, err := cc.buildSites(map[string]interface{}{"buildDrafts": true})
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				if err != nil {
 | 
					
						
							| 
									
										
										
										
											2019-05-04 21:21:21 +07:00
										 |  |  | 					return newSystemError("Error building sites", err)
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 				}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				for _, p := range sites.Pages() {
 | 
					
						
							| 
									
										
										
										
											2019-04-18 09:25:40 +02:00
										 |  |  | 					if p.Draft() {
 | 
					
						
							| 
									
										
										
										
											2019-05-04 21:21:21 +07:00
										 |  |  | 						jww.FEEDBACK.Println(strings.TrimPrefix(p.File().Filename(), sites.WorkingDir+string(os.PathSeparator)))
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 					}
 | 
					
						
							|  |  |  | 				}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				return nil
 | 
					
						
							|  |  |  | 			},
 | 
					
						
							|  |  |  | 		},
 | 
					
						
							|  |  |  | 		&cobra.Command{
 | 
					
						
							|  |  |  | 			Use:   "future",
 | 
					
						
							|  |  |  | 			Short: "List all posts dated in the future",
 | 
					
						
							| 
									
										
										
										
											2019-05-04 21:21:21 +07:00
										 |  |  | 			Long:  `List all of the posts in your content directory which will be posted in the future.`,
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 			RunE: func(cmd *cobra.Command, args []string) error {
 | 
					
						
							| 
									
										
										
										
											2019-05-04 21:21:21 +07:00
										 |  |  | 				sites, err := cc.buildSites(map[string]interface{}{"buildFuture": true})
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				if err != nil {
 | 
					
						
							| 
									
										
										
										
											2019-05-04 21:21:21 +07:00
										 |  |  | 					return newSystemError("Error building sites", err)
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 				}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-21 14:34:32 +13:00
										 |  |  | 				writer := csv.NewWriter(os.Stdout)
 | 
					
						
							|  |  |  | 				defer writer.Flush()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 				for _, p := range sites.Pages() {
 | 
					
						
							| 
									
										
										
										
											2019-01-02 12:33:26 +01:00
										 |  |  | 					if resource.IsFuture(p) {
 | 
					
						
							| 
									
										
										
										
											2019-05-04 21:21:21 +07:00
										 |  |  | 						err := writer.Write([]string{
 | 
					
						
							|  |  |  | 							strings.TrimPrefix(p.File().Filename(), sites.WorkingDir+string(os.PathSeparator)),
 | 
					
						
							|  |  |  | 							p.PublishDate().Format(time.RFC3339),
 | 
					
						
							|  |  |  | 						})
 | 
					
						
							| 
									
										
										
										
											2019-02-21 14:34:32 +13:00
										 |  |  | 						if err != nil {
 | 
					
						
							|  |  |  | 							return newSystemError("Error writing future posts to stdout", err)
 | 
					
						
							|  |  |  | 						}
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 					}
 | 
					
						
							|  |  |  | 				}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				return nil
 | 
					
						
							|  |  |  | 			},
 | 
					
						
							|  |  |  | 		},
 | 
					
						
							|  |  |  | 		&cobra.Command{
 | 
					
						
							|  |  |  | 			Use:   "expired",
 | 
					
						
							|  |  |  | 			Short: "List all posts already expired",
 | 
					
						
							| 
									
										
										
										
											2019-05-04 21:21:21 +07:00
										 |  |  | 			Long:  `List all of the posts in your content directory which has already expired.`,
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 			RunE: func(cmd *cobra.Command, args []string) error {
 | 
					
						
							| 
									
										
										
										
											2019-05-04 21:21:21 +07:00
										 |  |  | 				sites, err := cc.buildSites(map[string]interface{}{"buildExpired": true})
 | 
					
						
							| 
									
										
										
										
											2016-05-11 10:11:23 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 				if err != nil {
 | 
					
						
							| 
									
										
										
										
											2019-05-04 21:21:21 +07:00
										 |  |  | 					return newSystemError("Error building sites", err)
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 				}
 | 
					
						
							| 
									
										
										
										
											2016-08-05 16:11:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-21 14:34:32 +13:00
										 |  |  | 				writer := csv.NewWriter(os.Stdout)
 | 
					
						
							|  |  |  | 				defer writer.Flush()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 				for _, p := range sites.Pages() {
 | 
					
						
							| 
									
										
										
										
											2019-01-02 12:33:26 +01:00
										 |  |  | 					if resource.IsExpired(p) {
 | 
					
						
							| 
									
										
										
										
											2019-05-04 21:21:21 +07:00
										 |  |  | 						err := writer.Write([]string{
 | 
					
						
							|  |  |  | 							strings.TrimPrefix(p.File().Filename(), sites.WorkingDir+string(os.PathSeparator)),
 | 
					
						
							|  |  |  | 							p.ExpiryDate().Format(time.RFC3339),
 | 
					
						
							|  |  |  | 						})
 | 
					
						
							| 
									
										
										
										
											2019-02-21 14:34:32 +13:00
										 |  |  | 						if err != nil {
 | 
					
						
							|  |  |  | 							return newSystemError("Error writing expired posts to stdout", err)
 | 
					
						
							|  |  |  | 						}
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 					}
 | 
					
						
							|  |  |  | 				}
 | 
					
						
							| 
									
										
										
										
											2016-05-11 10:11:23 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 				return nil
 | 
					
						
							| 
									
										
										
										
											2019-05-04 21:21:21 +07: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 {
 | 
					
						
							|  |  |  | 				sites, err := cc.buildSites(map[string]interface{}{
 | 
					
						
							|  |  |  | 					"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 21:21:21 +07: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 20:42:08 +02:00
										 |  |  | 			},
 | 
					
						
							|  |  |  | 		},
 | 
					
						
							|  |  |  | 	)
 | 
					
						
							| 
									
										
										
										
											2016-05-11 10:11:23 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-31 09:09:11 +01:00
										 |  |  | 	cc.baseBuilderCmd = b.newBuilderBasicCmd(cmd)
 | 
					
						
							| 
									
										
										
										
											2016-05-11 10:11:23 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-09 20:42:08 +02:00
										 |  |  | 	return cc
 | 
					
						
							| 
									
										
										
										
											2016-05-11 10:11:23 -04:00
										 |  |  | }
 |