/commands/clone.go

http://github.com/defunkt/hub · Go · 156 lines · 136 code · 19 blank · 1 comment · 26 complexity · 165d1c8e02ee4bfb4bd8ada973966a34 MD5 · raw file

  1. package commands
  2. import (
  3. "fmt"
  4. "regexp"
  5. "strings"
  6. "github.com/github/hub/v2/github"
  7. "github.com/github/hub/v2/utils"
  8. )
  9. var cmdClone = &Command{
  10. Run: clone,
  11. GitExtension: true,
  12. Usage: "clone [-p] [<OPTIONS>] [<USER>/]<REPOSITORY> [<DESTINATION>]",
  13. Long: `Clone a repository from GitHub.
  14. ## Options:
  15. -p
  16. (Deprecated) Clone private repositories over SSH.
  17. [<USER>/]<REPOSITORY>
  18. <USER> defaults to your own GitHub username.
  19. <DESTINATION>
  20. Directory name to clone into (default: <REPOSITORY>).
  21. ## Protocol used for cloning
  22. The ''git:'' protocol will be used for cloning public repositories, while the SSH
  23. protocol will be used for private repositories and those that you have push
  24. access to. Alternatively, hub can be configured to use HTTPS protocol for
  25. everything. See "HTTPS instead of git protocol" and "HUB_PROTOCOL" of hub(1).
  26. ## Examples:
  27. $ hub clone rtomayko/ronn
  28. > git clone git://github.com/rtomayko/ronn.git
  29. ## See also:
  30. hub-fork(1), hub(1), git-clone(1)
  31. `,
  32. }
  33. func init() {
  34. CmdRunner.Use(cmdClone)
  35. }
  36. func clone(command *Command, args *Args) {
  37. if !args.IsParamsEmpty() {
  38. transformCloneArgs(args)
  39. }
  40. }
  41. func transformCloneArgs(args *Args) {
  42. isSSH := parseClonePrivateFlag(args)
  43. // git help clone | grep -e '^ \+-.\+<'
  44. p := utils.NewArgsParser()
  45. p.RegisterValue("--branch", "-b")
  46. p.RegisterValue("--depth")
  47. p.RegisterValue("--reference")
  48. if args.Command == "submodule" {
  49. p.RegisterValue("--name")
  50. } else {
  51. p.RegisterValue("--config", "-c")
  52. p.RegisterValue("--jobs", "-j")
  53. p.RegisterValue("--origin", "-o")
  54. p.RegisterValue("--reference-if-able")
  55. p.RegisterValue("--separate-git-dir")
  56. p.RegisterValue("--shallow-exclude")
  57. p.RegisterValue("--shallow-since")
  58. p.RegisterValue("--template")
  59. p.RegisterValue("--upload-pack", "-u")
  60. }
  61. p.Parse(args.Params)
  62. nameWithOwnerRegexp := regexp.MustCompile(NameWithOwnerRe)
  63. for _, i := range p.PositionalIndices {
  64. a := args.Params[i]
  65. if nameWithOwnerRegexp.MatchString(a) && !isCloneable(a) {
  66. url := getCloneURL(a, isSSH, args.Command != "submodule")
  67. args.ReplaceParam(i, url)
  68. }
  69. break
  70. }
  71. }
  72. func parseClonePrivateFlag(args *Args) bool {
  73. if i := args.IndexOfParam("-p"); i != -1 {
  74. args.RemoveParam(i)
  75. return true
  76. }
  77. return false
  78. }
  79. func getCloneURL(nameWithOwner string, isSSH, allowSSH bool) string {
  80. name := nameWithOwner
  81. owner := ""
  82. if strings.Contains(name, "/") {
  83. split := strings.SplitN(name, "/", 2)
  84. owner = split[0]
  85. name = split[1]
  86. }
  87. var host *github.Host
  88. if owner == "" {
  89. config := github.CurrentConfig()
  90. h, err := config.DefaultHost()
  91. if err != nil {
  92. utils.Check(github.FormatError("cloning repository", err))
  93. }
  94. host = h
  95. owner = host.User
  96. }
  97. var hostStr string
  98. if host != nil {
  99. hostStr = host.Host
  100. }
  101. expectWiki := strings.HasSuffix(name, ".wiki")
  102. if expectWiki {
  103. name = strings.TrimSuffix(name, ".wiki")
  104. }
  105. project := github.NewProject(owner, name, hostStr)
  106. gh := github.NewClient(project.Host)
  107. repo, err := gh.Repository(project)
  108. if err != nil {
  109. if strings.Contains(err.Error(), "HTTP 404") {
  110. err = fmt.Errorf("Error: repository %s/%s doesn't exist", project.Owner, project.Name)
  111. }
  112. utils.Check(err)
  113. }
  114. owner = repo.Owner.Login
  115. name = repo.Name
  116. if expectWiki {
  117. if !repo.HasWiki {
  118. utils.Check(fmt.Errorf("Error: %s/%s doesn't have a wiki", owner, name))
  119. } else {
  120. name = name + ".wiki"
  121. }
  122. }
  123. if !isSSH &&
  124. allowSSH &&
  125. !github.IsHTTPSProtocol() {
  126. isSSH = repo.Private || repo.Permissions.Push
  127. }
  128. return project.GitURL(name, owner, isSSH)
  129. }