| 
									
										
										
										
											2016-03-22 00:28:42 +01:00
										 |  |  | // Copyright 2016 The Hugo Authors. All rights reserved.
 | 
					
						
							| 
									
										
										
										
											2015-12-10 15:19:38 -07:00
										 |  |  | //
 | 
					
						
							|  |  |  | // 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.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-22 09:19:54 -07:00
										 |  |  | package commands
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"fmt"
 | 
					
						
							| 
									
										
										
										
											2015-11-28 07:32:02 -07:00
										 |  |  | 	"strings"
 | 
					
						
							| 
									
										
										
										
											2015-11-22 09:19:54 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-26 10:11:22 +01:00
										 |  |  | 	"github.com/gohugoio/hugo/common/hugo"
 | 
					
						
							| 
									
										
										
										
											2017-06-13 18:42:45 +02:00
										 |  |  | 	"github.com/gohugoio/hugo/helpers"
 | 
					
						
							|  |  |  | 	"github.com/gohugoio/hugo/hugofs"
 | 
					
						
							| 
									
										
										
										
											2017-06-13 19:07:35 +02:00
										 |  |  | 	"github.com/spf13/cobra"
 | 
					
						
							|  |  |  | 	"github.com/spf13/cobra/doc"
 | 
					
						
							| 
									
										
										
										
											2015-11-22 09:19:54 -07:00
										 |  |  | 	jww "github.com/spf13/jwalterweatherman"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-09 22:09:11 +02:00
										 |  |  | var _ cmder = (*genManCmd)(nil)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type genManCmd struct {
 | 
					
						
							|  |  |  | 	genmandir string
 | 
					
						
							| 
									
										
										
										
											2018-04-10 09:19:26 +02:00
										 |  |  | 	*baseCmd
 | 
					
						
							| 
									
										
										
										
											2018-04-09 22:09:11 +02:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func newGenManCmd() *genManCmd {
 | 
					
						
							|  |  |  | 	cc := &genManCmd{}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-10 09:19:26 +02:00
										 |  |  | 	cc.baseCmd = newBaseCmd(&cobra.Command{
 | 
					
						
							| 
									
										
										
										
											2018-04-09 22:09:11 +02:00
										 |  |  | 		Use:   "man",
 | 
					
						
							|  |  |  | 		Short: "Generate man pages for the Hugo CLI",
 | 
					
						
							|  |  |  | 		Long: `This command automatically generates up-to-date man pages of Hugo's
 | 
					
						
							| 
									
										
										
										
											2015-11-22 09:19:54 -07:00
										 |  |  | command-line interface.  By default, it creates the man page files
 | 
					
						
							|  |  |  | in the "man" directory under the current directory.`,
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-09 22:09:11 +02:00
										 |  |  | 		RunE: func(cmd *cobra.Command, args []string) error {
 | 
					
						
							|  |  |  | 			header := &doc.GenManHeader{
 | 
					
						
							|  |  |  | 				Section: "1",
 | 
					
						
							|  |  |  | 				Manual:  "Hugo Manual",
 | 
					
						
							| 
									
										
										
										
											2018-11-26 10:11:22 +01:00
										 |  |  | 				Source:  fmt.Sprintf("Hugo %s", hugo.CurrentVersion),
 | 
					
						
							| 
									
										
										
										
											2018-04-09 22:09:11 +02:00
										 |  |  | 			}
 | 
					
						
							|  |  |  | 			if !strings.HasSuffix(cc.genmandir, helpers.FilePathSeparator) {
 | 
					
						
							|  |  |  | 				cc.genmandir += helpers.FilePathSeparator
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 			if found, _ := helpers.Exists(cc.genmandir, hugofs.Os); !found {
 | 
					
						
							|  |  |  | 				jww.FEEDBACK.Println("Directory", cc.genmandir, "does not exist, creating...")
 | 
					
						
							|  |  |  | 				if err := hugofs.Os.MkdirAll(cc.genmandir, 0777); err != nil {
 | 
					
						
							|  |  |  | 					return err
 | 
					
						
							|  |  |  | 				}
 | 
					
						
							| 
									
										
										
										
											2017-04-06 17:39:20 +02:00
										 |  |  | 			}
 | 
					
						
							| 
									
										
										
										
											2018-04-09 22:09:11 +02:00
										 |  |  | 			cmd.Root().DisableAutoGenTag = true
 | 
					
						
							| 
									
										
										
										
											2015-11-28 07:32:02 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-09 22:09:11 +02:00
										 |  |  | 			jww.FEEDBACK.Println("Generating Hugo man pages in", cc.genmandir, "...")
 | 
					
						
							|  |  |  | 			doc.GenManTree(cmd.Root(), header, cc.genmandir)
 | 
					
						
							| 
									
										
										
										
											2015-11-28 07:32:02 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-09 22:09:11 +02:00
										 |  |  | 			jww.FEEDBACK.Println("Done.")
 | 
					
						
							| 
									
										
										
										
											2015-12-02 11:42:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-09 22:09:11 +02:00
										 |  |  | 			return nil
 | 
					
						
							|  |  |  | 		},
 | 
					
						
							| 
									
										
										
										
											2018-04-10 09:19:26 +02:00
										 |  |  | 	})
 | 
					
						
							| 
									
										
										
										
											2015-11-28 07:32:02 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-09 22:09:11 +02:00
										 |  |  | 	cc.cmd.PersistentFlags().StringVar(&cc.genmandir, "dir", "man/", "the directory to write the man pages.")
 | 
					
						
							| 
									
										
										
										
											2015-12-02 02:20:55 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// For bash-completion
 | 
					
						
							| 
									
										
										
										
											2018-04-09 22:09:11 +02:00
										 |  |  | 	cc.cmd.PersistentFlags().SetAnnotation("dir", cobra.BashCompSubdirsInDir, []string{})
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return cc
 | 
					
						
							| 
									
										
										
										
											2015-11-28 07:32:02 -07:00
										 |  |  | }
 |