2013-05-29 22:58:46 +04:00
|
|
|
package commands
|
2013-04-09 08:53:13 +04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2016-01-25 14:17:21 +03:00
|
|
|
"path/filepath"
|
2014-10-19 05:19:18 +04:00
|
|
|
"sort"
|
2014-01-10 19:43:15 +04:00
|
|
|
"strings"
|
2016-01-22 14:28:04 +03:00
|
|
|
|
2016-01-22 14:40:14 +03:00
|
|
|
"github.com/github/hub/cmd"
|
2016-01-22 14:28:04 +03:00
|
|
|
"github.com/github/hub/git"
|
2016-01-24 11:47:17 +03:00
|
|
|
"github.com/github/hub/ui"
|
2016-01-22 14:28:04 +03:00
|
|
|
"github.com/github/hub/utils"
|
2013-04-09 08:53:13 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
var cmdHelp = &Command{
|
2016-01-24 11:56:18 +03:00
|
|
|
Run: runHelp,
|
2014-01-10 19:43:15 +04:00
|
|
|
GitExtension: true,
|
2016-01-25 14:32:00 +03:00
|
|
|
Usage: `
|
|
|
|
help hub
|
|
|
|
help <COMMAND>
|
|
|
|
help hub-<COMMAND> [--plain-text]
|
|
|
|
`,
|
|
|
|
Long: `Show the help page for a command.
|
|
|
|
|
|
|
|
## Options:
|
|
|
|
hub-<COMMAND>
|
|
|
|
Use this format to view help for hub extensions to an existing git command.
|
|
|
|
|
|
|
|
--plain-text
|
|
|
|
Skip man page lookup mechanism and display plain help text.
|
|
|
|
|
|
|
|
## Man lookup mechanism:
|
|
|
|
|
|
|
|
On systems that have 'man', help pages are looked up in these directories
|
|
|
|
relative to 'hub' install prefix:
|
|
|
|
|
|
|
|
* 'man/<command>.1'
|
|
|
|
* 'share/man/man1/<command>.1'
|
|
|
|
|
|
|
|
On systems without 'man', same help pages are looked up with a '.txt' suffix.
|
|
|
|
|
|
|
|
## See also:
|
|
|
|
|
|
|
|
hub(1), git-help(1)
|
|
|
|
`,
|
2013-04-09 08:53:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2015-07-08 21:33:58 +03:00
|
|
|
CmdRunner.Use(cmdHelp, "--help")
|
2013-04-09 08:53:13 +04:00
|
|
|
}
|
|
|
|
|
2016-01-22 14:40:14 +03:00
|
|
|
func runHelp(helpCmd *Command, args *Args) {
|
2013-07-02 23:12:20 +04:00
|
|
|
if args.IsParamsEmpty() {
|
2013-07-02 22:56:45 +04:00
|
|
|
printUsage()
|
|
|
|
os.Exit(0)
|
2013-04-09 08:53:13 +04:00
|
|
|
}
|
2013-06-29 01:21:48 +04:00
|
|
|
|
2016-01-24 12:35:16 +03:00
|
|
|
if args.HasFlags("-a", "--all") {
|
|
|
|
args.After("echo", "\nhub custom commands\n")
|
|
|
|
args.After("echo", " ", strings.Join(customCommands(), " "))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-10-19 05:19:18 +04:00
|
|
|
command := args.FirstParam()
|
2016-01-22 14:40:14 +03:00
|
|
|
|
|
|
|
if command == "hub" {
|
2016-01-25 14:17:21 +03:00
|
|
|
err := displayManPage("hub.1", args)
|
|
|
|
if err != nil {
|
|
|
|
utils.Check(err)
|
2016-01-22 14:40:14 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-24 12:35:16 +03:00
|
|
|
if c := lookupCmd(command); c != nil {
|
2016-01-25 14:17:21 +03:00
|
|
|
if !args.HasFlags("--plain-text") {
|
|
|
|
manPage := fmt.Sprintf("hub-%s.1", c.Name())
|
|
|
|
err := displayManPage(manPage, args)
|
2016-01-24 16:20:26 +03:00
|
|
|
if err == nil {
|
2016-01-25 14:17:21 +03:00
|
|
|
return
|
2016-01-24 16:20:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-25 14:17:21 +03:00
|
|
|
ui.Println(c.HelpText())
|
|
|
|
os.Exit(0)
|
2016-01-24 16:20:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-25 14:17:21 +03:00
|
|
|
func displayManPage(manPage string, args *Args) error {
|
|
|
|
manProgram, _ := utils.CommandPath("man")
|
|
|
|
if manProgram == "" {
|
|
|
|
manPage += ".txt"
|
|
|
|
manProgram = os.Getenv("PAGER")
|
|
|
|
if manProgram == "" {
|
|
|
|
manProgram = "less -R"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-24 16:20:26 +03:00
|
|
|
programPath, err := utils.CommandPath(args.ProgramPath)
|
|
|
|
if err != nil {
|
2016-01-25 14:17:21 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
installPrefix := filepath.Join(filepath.Dir(programPath), "..")
|
|
|
|
manFile, err := localManPage(manPage, installPrefix)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
man := cmd.New(manProgram)
|
|
|
|
man.WithArg(manFile)
|
|
|
|
if err = man.Run(); err == nil {
|
|
|
|
os.Exit(0)
|
|
|
|
} else {
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func localManPage(name, installPrefix string) (string, error) {
|
|
|
|
manPath := filepath.Join(installPrefix, "man", name)
|
|
|
|
_, err := os.Stat(manPath)
|
|
|
|
if err == nil {
|
|
|
|
return manPath, nil
|
2016-01-24 16:20:26 +03:00
|
|
|
}
|
|
|
|
|
2016-01-25 14:17:21 +03:00
|
|
|
manPath = filepath.Join(installPrefix, "share", "man", "man1", name)
|
2016-01-24 16:20:26 +03:00
|
|
|
_, err = os.Stat(manPath)
|
|
|
|
if err == nil {
|
|
|
|
return manPath, nil
|
|
|
|
} else {
|
|
|
|
return "", err
|
2016-01-24 12:35:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func lookupCmd(name string) *Command {
|
|
|
|
if strings.HasPrefix(name, "hub-") {
|
|
|
|
return CmdRunner.Lookup(strings.TrimPrefix(name, "hub-"))
|
|
|
|
} else {
|
|
|
|
cmd := CmdRunner.Lookup(name)
|
|
|
|
if cmd != nil && !cmd.GitExtension {
|
|
|
|
return cmd
|
|
|
|
} else {
|
|
|
|
return nil
|
2013-04-09 08:53:13 +04:00
|
|
|
}
|
|
|
|
}
|
2014-01-10 19:43:15 +04:00
|
|
|
}
|
|
|
|
|
2014-10-19 05:19:18 +04:00
|
|
|
func customCommands() []string {
|
|
|
|
cmds := []string{}
|
|
|
|
for n, c := range CmdRunner.All() {
|
2016-01-22 14:12:55 +03:00
|
|
|
if !c.GitExtension && !strings.HasPrefix(n, "--") {
|
2014-10-19 05:19:18 +04:00
|
|
|
cmds = append(cmds, n)
|
|
|
|
}
|
2014-01-10 19:43:15 +04:00
|
|
|
}
|
|
|
|
|
2014-10-19 05:19:18 +04:00
|
|
|
sort.Sort(sort.StringSlice(cmds))
|
2014-01-10 19:43:15 +04:00
|
|
|
|
2014-10-19 05:19:18 +04:00
|
|
|
return cmds
|
2013-04-09 08:53:13 +04:00
|
|
|
}
|
|
|
|
|
2016-01-22 14:28:04 +03:00
|
|
|
var helpText = `
|
|
|
|
These GitHub commands are provided by hub:
|
2013-06-18 01:09:47 +04:00
|
|
|
|
2013-07-06 00:58:51 +04:00
|
|
|
pull-request Open a pull request on GitHub
|
|
|
|
fork Make a fork of a remote repository on GitHub and add as remote
|
|
|
|
create Create this repository on GitHub and add GitHub as origin
|
|
|
|
browse Open a GitHub page in the default browser
|
|
|
|
compare Open a compare page on GitHub
|
2016-03-14 01:49:54 +03:00
|
|
|
release List or create releases
|
|
|
|
issue List or create issues
|
2014-01-04 19:06:06 +04:00
|
|
|
ci-status Show the CI status of a commit
|
2013-07-06 00:58:51 +04:00
|
|
|
`
|
2013-04-09 08:53:13 +04:00
|
|
|
|
2013-06-29 01:21:48 +04:00
|
|
|
func printUsage() {
|
2016-01-22 14:28:04 +03:00
|
|
|
err := git.ForwardGitHelp()
|
|
|
|
utils.Check(err)
|
2013-07-06 00:58:51 +04:00
|
|
|
fmt.Print(helpText)
|
2013-04-09 08:53:13 +04:00
|
|
|
}
|