2015-12-07 13:57:01 -05:00
|
|
|
// Copyright 2015 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 (
|
|
|
|
"fmt"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/spf13/hugo/hugolib"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
listCmd.AddCommand(listDraftsCmd)
|
|
|
|
listCmd.AddCommand(listFutureCmd)
|
2016-02-05 16:58:17 -05:00
|
|
|
listCmd.PersistentFlags().StringVarP(&source, "source", "s", "", "filesystem path to read files relative from")
|
2015-12-16 01:41:10 -05:00
|
|
|
listCmd.PersistentFlags().SetAnnotation("source", cobra.BashCompSubdirsInDir, []string{})
|
2014-11-19 16:24:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
var listCmd = &cobra.Command{
|
|
|
|
Use: "list",
|
|
|
|
Short: "Listing out various types of content",
|
2015-10-12 14:47:06 -04:00
|
|
|
Long: `Listing out various types of content.
|
2015-08-04 05:15:12 -04:00
|
|
|
|
|
|
|
List requires a subcommand, e.g. ` + "`hugo list drafts`.",
|
2015-12-02 05:42:53 -05:00
|
|
|
RunE: nil,
|
2014-11-19 16:24:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
var listDraftsCmd = &cobra.Command{
|
|
|
|
Use: "drafts",
|
|
|
|
Short: "List all drafts",
|
2015-08-04 05:15:12 -04:00
|
|
|
Long: `List all of the drafts in your content directory.`,
|
2015-12-02 05:42:53 -05:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
|
|
|
|
if err := InitializeConfig(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-11-19 16:24:30 -05:00
|
|
|
|
|
|
|
viper.Set("BuildDrafts", true)
|
|
|
|
|
|
|
|
site := &hugolib.Site{}
|
|
|
|
|
|
|
|
if err := site.Process(); err != nil {
|
2015-12-02 05:42:53 -05:00
|
|
|
return newSystemError("Error Processing Source Content", err)
|
2014-11-19 16:24:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, p := range site.Pages {
|
|
|
|
if p.IsDraft() {
|
|
|
|
fmt.Println(filepath.Join(p.File.Dir(), p.File.LogicalName()))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-12-02 05:42:53 -05:00
|
|
|
return nil
|
|
|
|
|
2014-11-19 16:24:30 -05:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var listFutureCmd = &cobra.Command{
|
|
|
|
Use: "future",
|
|
|
|
Short: "List all posts dated in the future",
|
2015-10-12 14:47:06 -04:00
|
|
|
Long: `List all of the posts in your content directory which will be
|
2015-08-04 05:15:12 -04:00
|
|
|
posted in the future.`,
|
2015-12-02 05:42:53 -05:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
|
|
|
|
if err := InitializeConfig(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-11-19 16:24:30 -05:00
|
|
|
|
|
|
|
viper.Set("BuildFuture", true)
|
|
|
|
|
|
|
|
site := &hugolib.Site{}
|
|
|
|
|
|
|
|
if err := site.Process(); err != nil {
|
2015-12-02 05:42:53 -05:00
|
|
|
return newSystemError("Error Processing Source Content", err)
|
2014-11-19 16:24:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, p := range site.Pages {
|
|
|
|
if p.IsFuture() {
|
|
|
|
fmt.Println(filepath.Join(p.File.Dir(), p.File.LogicalName()))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-12-02 05:42:53 -05:00
|
|
|
return nil
|
|
|
|
|
2014-11-19 16:24:30 -05:00
|
|
|
},
|
|
|
|
}
|